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

Benjamin Mako Hill || Want to submit a patch?