| -+ | 1 | require "active_support/core_ext/integer/time" | ||
| 2 | ||||
| 1 | # The test environment is used exclusively to run your application's | = | 3 | # The test environment is used exclusively to run your application's |
| 2 | # test suite. You never need to work with it otherwise. Remember that | 4 | # test suite. You never need to work with it otherwise. Remember that | |
| 3 | # your test database is "scratch space" for the test suite and is wiped | 5 | # your test database is "scratch space" for the test suite and is wiped | |
| 4 | # and recreated between test runs. Don't rely on the data there! | 6 | # and recreated between test runs. Don't rely on the data there! | |
| 5 | 7 | |||
| 6 | Rails.application.configure do | 8 | Rails.application.configure do | |
| 7 | # Settings specified here will take precedence over those in config/application.rb. | 9 | # Settings specified here will take precedence over those in config/application.rb. | |
| 8 | 10 | |||
| 9 | config.cache_classes = false | 11 | config.cache_classes = false | |
| -+ | 12 | config.action_view.cache_template_loading = true | ||
| 10 | = | 13 | ||
| 11 | # Do not eager load code on boot. This avoids loading your whole application | 14 | # Do not eager load code on boot. This avoids loading your whole application | |
| 12 | # just for the purpose of running a single test. If you are using a tool that | 15 | # just for the purpose of running a single test. If you are using a tool that | |
| 13 | # preloads Rails for running tests, you may have to set it to true. | 16 | # preloads Rails for running tests, you may have to set it to true. | |
| 14 | config.eager_load = false | 17 | config.eager_load = false | |
| 15 | 18 | |||
| 16 | # Configure public file server for tests with Cache-Control for performance. | 19 | # Configure public file server for tests with Cache-Control for performance. | |
| 17 | config.public_file_server.enabled = true | 20 | config.public_file_server.enabled = true | |
| 18 | config.public_file_server.headers = { | 21 | config.public_file_server.headers = { | |
| 19 | 'Cache-Control' => "public, max-age=#{1.hour.to_i}" | 22 | 'Cache-Control' => "public, max-age=#{1.hour.to_i}" | |
| 20 | } | 23 | } | |
| 21 | 24 | |||
| 22 | # Show full error reports and disable caching. | 25 | # Show full error reports and disable caching. | |
| 23 | config.consider_all_requests_local = true | 26 | config.consider_all_requests_local = true | |
| 24 | config.action_controller.perform_caching = false | 27 | config.action_controller.perform_caching = false | |
| 25 | config.cache_store = :null_store | 28 | config.cache_store = :null_store | |
| 26 | 29 | |||
| 27 | # Raise exceptions instead of rendering exception templates. | 30 | # Raise exceptions instead of rendering exception templates. | |
| 28 | config.action_dispatch.show_exceptions = false | 31 | config.action_dispatch.show_exceptions = false | |
| 29 | 32 | |||
| 30 | # Disable request forgery protection in test environment. | 33 | # Disable request forgery protection in test environment. | |
| 31 | config.action_controller.allow_forgery_protection = false | 34 | config.action_controller.allow_forgery_protection = false | |
| 32 | 35 | |||
| 33 | # Store uploaded files on the local file system in a temporary directory. | 36 | # Store uploaded files on the local file system in a temporary directory. | |
| 34 | config.active_storage.service = :test | 37 | config.active_storage.service = :test | |
| 35 | 38 | |||
| 36 | config.action_mailer.perform_caching = false | 39 | config.action_mailer.perform_caching = false | |
| 37 | 40 | |||
| 38 | # Tell Action Mailer not to deliver emails to the real world. | 41 | # Tell Action Mailer not to deliver emails to the real world. | |
| 39 | # The :test delivery method accumulates sent emails in the | 42 | # The :test delivery method accumulates sent emails in the | |
| 40 | # ActionMailer::Base.deliveries array. | 43 | # ActionMailer::Base.deliveries array. | |
| 41 | config.action_mailer.delivery_method = :test | 44 | config.action_mailer.delivery_method = :test | |
| 42 | 45 | |||
| 43 | # Print deprecation notices to the stderr. | 46 | # Print deprecation notices to the stderr. | |
| 44 | config.active_support.deprecation = :stderr | 47 | config.active_support.deprecation = :stderr | |
| 45 | 48 | |||
| -+ | 49 | # Raise exceptions for disallowed deprecations. | ||
| 50 | config.active_support.disallowed_deprecation = :raise | |||
| 51 | ||||
| 52 | # Tell Active Support which deprecation messages to disallow. | |||
| 53 | config.active_support.disallowed_deprecation_warnings = [] | |||
| 54 | ||||
| 46 | # Raises error for missing translations. | = | 55 | # Raises error for missing translations. |
| 47 | # config.action_view.raise_on_missing_translations = true | <> | 56 | # config.i18n.raise_on_missing_translations = true |
| 57 | ||||
| 58 | # Annotate rendered view with file names. | |||
| 59 | # config.action_view.annotate_rendered_view_with_filenames = true | |||
| 48 | end | = | 60 | end |