summaryrefslogtreecommitdiff
path: root/config/environments/test.rb
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-02-20 19:53:14 -0600
committerHombreLaser <sebastian-440@live.com>2023-02-20 19:53:14 -0600
commit9aa71bb4bfa345da9514bf6bb251985af0b8758e (patch)
treef980e6f7a9d8f311cf5edd6239775e5ff3a4c5b6 /config/environments/test.rb
parenta4d29f635c7c6bec4a15ab43956a2be896b0ff11 (diff)
AƱadidos safe autocorrects de rubocop
Diffstat (limited to 'config/environments/test.rb')
-rw-r--r--config/environments/test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/environments/test.rb b/config/environments/test.rb
index 6ea4d1e..5f6cef4 100644
--- a/config/environments/test.rb
+++ b/config/environments/test.rb
@@ -1,4 +1,4 @@
-require "active_support/core_ext/integer/time"
+require 'active_support/core_ext/integer/time'
# The test environment is used exclusively to run your application's
# test suite. You never need to work with it otherwise. Remember that
@@ -14,12 +14,12 @@ Rails.application.configure do
# Eager loading loads your whole application. When running a single test locally,
# this probably isn't necessary. It's a good idea to do in a continuous integration
# system, or in some way before deploying your code.
- config.eager_load = ENV["CI"].present?
+ config.eager_load = ENV['CI'].present?
# Configure public file server for tests with Cache-Control for performance.
config.public_file_server.enabled = true
config.public_file_server.headers = {
- "Cache-Control" => "public, max-age=#{1.hour.to_i}"
+ 'Cache-Control' => "public, max-age=#{1.hour.to_i}"
}
# Show full error reports and disable caching.