Chris@0: # Settings specified here will take precedence over those in config/environment.rb Chris@0: Chris@0: # The test environment is used exclusively to run your application's Chris@0: # test suite. You never need to work with it otherwise. Remember that Chris@0: # your test database is "scratch space" for the test suite and is wiped Chris@0: # and recreated between test runs. Don't rely on the data there! Chris@0: config.cache_classes = true Chris@0: Chris@0: # Log error messages when you accidentally call methods on nil. Chris@0: config.whiny_nils = true Chris@0: Chris@0: # Show full error reports and disable caching Chris@0: config.action_controller.consider_all_requests_local = true Chris@0: config.action_controller.perform_caching = false Chris@0: Chris@0: config.action_mailer.perform_deliveries = true Chris@0: config.action_mailer.delivery_method = :test Chris@0: Chris@0: config.action_controller.session = { chris@37: :key => "_test_session", Chris@0: :secret => "some secret phrase for the tests." Chris@0: } Chris@0: Chris@0: # Skip protect_from_forgery in requests http://m.onkey.org/2007/9/28/csrf-protection-for-your-existing-rails-application Chris@0: config.action_controller.allow_forgery_protection = false Chris@0: Chris@0: config.gem "shoulda", :version => "~> 2.10.3" Chris@0: config.gem "edavis10-object_daddy", :lib => "object_daddy" Chris@0: config.gem "mocha"