2
0
mirror of https://github.com/moebooru/moebooru synced 2025-08-22 01:47:48 +00:00

60 lines
2.2 KiB
Ruby
Raw Normal View History

2021-02-11 16:57:35 +09:00
require "active_support/core_ext/integer/time"
2019-08-17 17:03:16 +09:00
# The test environment is used exclusively to run your application's
# test suite. You never need to work with it otherwise. Remember that
# your test database is "scratch space" for the test suite and is wiped
# and recreated between test runs. Don't rely on the data there!
2016-08-16 04:53:41 +09:00
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
2012-05-08 06:01:18 +00:00
config.cache_classes = true
2016-08-16 04:53:41 +09:00
# Do not eager load code on boot. This avoids loading your whole application
# just for the purpose of running a single test. If you are using a tool that
# preloads Rails for running tests, you may have to set it to true.
2013-07-14 13:09:06 +09:00
config.eager_load = false
2016-08-16 04:53:41 +09:00
# Configure public file server for tests with Cache-Control for performance.
config.public_file_server.enabled = true
config.public_file_server.headers = {
2018-05-05 13:55:42 +09:00
'Cache-Control' => "public, max-age=#{1.hour.to_i}"
2016-08-16 04:53:41 +09:00
}
2016-08-16 04:53:41 +09:00
# Show full error reports and disable caching.
2012-05-08 06:01:18 +00:00
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
2019-08-17 17:03:16 +09:00
# config.cache_store = :null_store
2012-05-08 06:01:18 +00:00
2016-08-16 04:53:41 +09:00
# Raise exceptions instead of rendering exception templates.
2012-05-08 06:01:18 +00:00
config.action_dispatch.show_exceptions = false
2016-08-16 04:53:41 +09:00
# Disable request forgery protection in test environment.
config.action_controller.allow_forgery_protection = false
2018-05-05 13:55:42 +09:00
2019-08-17 17:03:16 +09:00
# Store uploaded files on the local file system in a temporary directory.
2018-05-05 13:55:42 +09:00
config.active_storage.service = :test
2016-08-16 04:53:41 +09:00
config.action_mailer.perform_caching = false
2012-05-08 06:01:18 +00: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
2016-08-16 04:53:41 +09:00
# Print deprecation notices to the stderr.
2012-05-08 06:01:18 +00:00
config.active_support.deprecation = :stderr
2021-02-11 16:57:35 +09:00
# Raise exceptions for disallowed deprecations.
config.active_support.disallowed_deprecation = :raise
# Tell Active Support which deprecation messages to disallow.
config.active_support.disallowed_deprecation_warnings = []
2019-08-17 17:03:16 +09:00
# Raises error for missing translations.
2021-02-11 16:57:35 +09:00
# config.i18n.raise_on_missing_translations = true
# Annotate rendered view with file names.
# config.action_view.annotate_rendered_view_with_filenames = true
2012-05-08 06:01:18 +00:00
end