You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test.rb 1.2KB

123456789101112131415161718192021222324252627282930
  1. # Settings specified here will take precedence over those in config/application.rb
  2. RedmineApp::Application.configure do
  3. # The test environment is used exclusively to run your application's
  4. # test suite. You never need to work with it otherwise. Remember that
  5. # your test database is "scratch space" for the test suite and is wiped
  6. # and recreated between test runs. Don't rely on the data there!
  7. config.cache_classes = true
  8. # Log error messages when you accidentally call methods on nil.
  9. config.whiny_nils = true
  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. config.action_mailer.perform_deliveries = true
  14. # Tell Action Mailer 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
  18. # Skip protect_from_forgery in requests
  19. # http://m.onkey.org/2007/9/28/csrf-protection-for-your-existing-rails-application
  20. config.action_controller.allow_forgery_protection = false
  21. config.active_support.deprecation = :log
  22. config.secret_token = 'a secret token for running the tests'
  23. end