aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorAndrew White <andrew.white@unboxed.co>2016-11-02 11:44:05 +0000
committerAndrew White <andrew.white@unboxed.co>2016-11-02 16:15:00 +0000
commit21186270288ef3f8816cecf0aad1e1c537493bee (patch)
tree958f07c3123d739f890261cdfcdb8d70764d2ed2 /activerecord
parentb82fa5cd2e39bf400f61478173885d6c0b480384 (diff)
downloadrails-21186270288ef3f8816cecf0aad1e1c537493bee.tar.gz
rails-21186270288ef3f8816cecf0aad1e1c537493bee.tar.bz2
rails-21186270288ef3f8816cecf0aad1e1c537493bee.zip
Fix warning about unset I18n.enforce_available_locales
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/helper.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/test/cases/helper.rb b/activerecord/test/cases/helper.rb
index cf49b125d7..e3374bb36f 100644
--- a/activerecord/test/cases/helper.rb
+++ b/activerecord/test/cases/helper.rb
@@ -17,6 +17,9 @@ require 'support/connection'
# Show backtraces for deprecated behavior for quicker cleanup.
ActiveSupport::Deprecation.debug = true
+# Disable available locale checks to avoid warnings running the test suite.
+I18n.enforce_available_locales = false
+
# Enable Identity Map only when ENV['IM'] is set to "true"
ActiveRecord::IdentityMap.enabled = (ENV['IM'] == "true")