2015-11-25 11:18:44 -05:00
|
|
|
Rails.application.configure do
|
2011-10-08 17:36:38 -04:00
|
|
|
# Settings specified here will take precedence over those in config/application.rb
|
|
|
|
|
|
|
|
# The test environment is used exclusively to run your application's
|
2012-11-14 08:45:15 -05:00
|
|
|
# test suite. You never need to work with it otherwise. Remember that
|
2011-10-08 17:36:38 -04:00
|
|
|
# your test database is "scratch space" for the test suite and is wiped
|
2012-11-14 08:45:15 -05:00
|
|
|
# and recreated between test runs. Don't rely on the data there!
|
2015-02-12 07:47:23 -05:00
|
|
|
config.cache_classes = false
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
# Configure static asset server for tests with Cache-Control for performance
|
2016-03-28 15:37:53 -04:00
|
|
|
config.assets.digest = false
|
2015-11-26 08:48:01 -05:00
|
|
|
config.serve_static_files = true
|
2011-10-08 17:36:38 -04:00
|
|
|
config.static_cache_control = "public, max-age=3600"
|
|
|
|
|
|
|
|
# Show full error reports and disable caching
|
|
|
|
config.consider_all_requests_local = true
|
|
|
|
config.action_controller.perform_caching = false
|
|
|
|
|
|
|
|
# Raise exceptions instead of rendering exception templates
|
|
|
|
config.action_dispatch.show_exceptions = false
|
|
|
|
|
|
|
|
# Disable request forgery protection in test environment
|
2016-05-10 22:58:06 -04:00
|
|
|
config.action_controller.allow_forgery_protection = false
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
# Tell Action Mailer not to deliver emails to the real world.
|
|
|
|
# The :test delivery method accumulates sent emails in the
|
|
|
|
# ActionMailer::Base.deliveries array.
|
|
|
|
config.action_mailer.delivery_method = :test
|
|
|
|
|
|
|
|
# Print deprecation notices to the stderr
|
|
|
|
config.active_support.deprecation = :stderr
|
2013-12-06 10:04:18 -05:00
|
|
|
|
|
|
|
config.eager_load = false
|
2015-11-16 05:18:31 -05:00
|
|
|
|
|
|
|
config.cache_store = :null_store
|
2015-11-30 04:21:10 -05:00
|
|
|
|
|
|
|
config.active_job.queue_adapter = :test
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|