fixed and re-enabled support for memcache in the production site
[selectricity-live] / config / environments / test.rb
1 # Settings specified here will take precedence over those in config/environment.rb
2 #disable memcache
3 Cache=nil
4
5 # The test environment is used exclusively to run your application's
6 # test suite.  You never need to work with it otherwise.  Remember that
7 # your test database is "scratch space" for the test suite and is wiped
8 # and recreated between test runs.  Don't rely on the data there!
9 config.cache_classes = true
10
11 # Log error messages when you accidentally call methods on nil.
12 config.whiny_nils = true
13
14 # Show full error reports and disable caching
15 config.action_controller.consider_all_requests_local = true
16 config.action_controller.perform_caching             = false
17
18 # Tell ActionMailer not to deliver emails to the real world.
19 # The :test delivery method accumulates sent emails in the
20 # ActionMailer::Base.deliveries array.
21 config.action_mailer.delivery_method = :test
22
23 # start the debugger
24 require 'ruby-debug'
25 SCRIPT_LINES__ = {}
26 Debugger.start

Benjamin Mako Hill || Want to submit a patch?