Creation of new VotingBooth rails application to expose the
[selectricity-live] / config / environments / test.rb
1 # The test environment is used exclusively to run your application's
2 # test suite.  You never need to work with it otherwise.  Remember that
3 # your test database is "scratch space" for the test suite and is wiped
4 # and recreated between test runs.  Don't rely on the data there!
5 config.cache_classes = true
6
7 # Log error messages when you accidentally call methods on nil.
8 config.whiny_nils    = true
9
10 # Show full error reports and disable caching
11 config.action_controller.consider_all_requests_local = true
12 config.action_controller.perform_caching             = false
13
14 # Tell ActionMailer not to deliver emails to the real world.
15 # The :test delivery method accumulates sent emails in the
16 # ActionMailer::Base.deliveries array.
17 config.action_mailer.delivery_method = :test

Benjamin Mako Hill || Want to submit a patch?