trabajo-afectivo/config/environments/test.rb

61 lines
2.2 KiB
Ruby
Raw Permalink Normal View History

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
2015-09-25 14:37:55 +00:00
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
2012-04-10 13:31:21 +00: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!
config.cache_classes = true
2013-09-20 12:54:33 +00: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.
config.eager_load = false
# Configure public file server for tests with Cache-Control for performance.
2017-09-08 08:28:34 +00:00
config.public_file_server.enabled = true
config.public_file_server.headers = {
'Cache-Control' => "public, max-age=#{1.hour.to_i}"
}
2012-04-10 13:31:21 +00:00
2015-09-25 14:37:55 +00:00
# Show full error reports and disable caching.
2012-04-10 13:31:21 +00:00
config.consider_all_requests_local = true
2015-09-25 14:37:55 +00:00
config.action_controller.perform_caching = false
2012-04-10 13:31:21 +00:00
2015-09-25 14:37:55 +00:00
# Raise exceptions instead of rendering exception templates.
2012-04-10 13:31:21 +00:00
config.action_dispatch.show_exceptions = false
2015-09-25 14:37:55 +00:00
# Disable request forgery protection in test environment.
config.action_controller.allow_forgery_protection = false
# Store uploaded files on the local file system in a temporary directory.
# config.active_storage.service = :test
config.action_mailer.perform_caching = false
2012-04-10 13:31:21 +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
2015-09-30 06:50:28 +00:00
# Sort the order test cases are executed.
config.active_support.test_order = :sorted
2015-09-25 14:37:55 +00:00
# Print deprecation notices to the stderr.
2012-04-10 13:31:21 +00:00
config.active_support.deprecation = :stderr
2013-08-04 21:50:08 +00:00
# Raises error for missing translations.
2015-09-25 14:37:55 +00:00
# config.action_view.raise_on_missing_translations = true
2013-08-04 21:50:08 +00:00
2014-10-12 12:45:14 +00:00
# Enable autoload
2013-08-04 21:50:08 +00:00
config.dependency_loading = true
# Reduce log level to speed up test runs.
config.after_initialize do
ActiveRecord::Base.logger = Rails.logger.clone
ActiveRecord::Base.logger.level = Logger::INFO
end
end