test.rb 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. require "active_support/core_ext/integer/time"
  2. # The test environment is used exclusively to run your application's
  3. # test suite. You never need to work with it otherwise. Remember that
  4. # your test database is "scratch space" for the test suite and is wiped
  5. # and recreated between test runs. Don't rely on the data there!
  6. Rails.application.configure do
  7. # Settings specified here will take precedence over those in config/application.rb.
  8. config.cache_classes = false
  9. config.action_view.cache_template_loading = true
  10. # Do not eager load code on boot. This avoids loading your whole application
  11. # just for the purpose of running a single test. If you are using a tool that
  12. # preloads Rails for running tests, you may have to set it to true.
  13. config.eager_load = false
  14. # Configure public file server for tests with Cache-Control for performance.
  15. config.public_file_server.enabled = true
  16. config.public_file_server.headers = {
  17. 'Cache-Control' => "public, max-age=#{1.hour.to_i}"
  18. }
  19. # Show full error reports and disable caching.
  20. config.consider_all_requests_local = true
  21. config.action_controller.perform_caching = false
  22. config.cache_store = :null_store
  23. # Raise exceptions instead of rendering exception templates.
  24. config.action_dispatch.show_exceptions = false
  25. # Disable request forgery protection in test environment.
  26. config.action_controller.allow_forgery_protection = false
  27. # Print deprecation notices to the stderr.
  28. config.active_support.deprecation = :stderr
  29. # Raise exceptions for disallowed deprecations.
  30. config.active_support.disallowed_deprecation = :raise
  31. # Tell Active Support which deprecation messages to disallow.
  32. config.active_support.disallowed_deprecation_warnings = []
  33. end