test.rb 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. # Turn false under Spring and add config.action_view.cache_template_loading = true.
  9. config.cache_classes = true
  10. # Eager loading loads your whole application. When running a single test locally,
  11. # this probably isn't necessary. It's a good idea to do in a continuous integration
  12. # system, or in some way before deploying your code.
  13. config.eager_load = ENV["CI"].present?
  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. # Raises error for missing translations.
  34. # config.i18n.raise_on_missing_translations = true
  35. # Annotate rendered view with file names.
  36. # config.action_view.annotate_rendered_view_with_filenames = true
  37. # Raise error when a before_action's only/except options reference missing actions
  38. config.action_controller.raise_on_missing_callback_actions = true
  39. end