aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/abstract_unit.rb
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-12-16 16:04:07 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-12-17 09:05:41 -0200
commit6802196a6b7db928f9dc70fe5a4f3b61a3ea33ce (patch)
tree23ce7d9e431807174591f9c74fd7cda8aa32460f /activesupport/test/abstract_unit.rb
parentc445c6d1b99c987b7f98943db46f705a3acc400f (diff)
downloadrails-6802196a6b7db928f9dc70fe5a4f3b61a3ea33ce.tar.gz
rails-6802196a6b7db928f9dc70fe5a4f3b61a3ea33ce.tar.bz2
rails-6802196a6b7db928f9dc70fe5a4f3b61a3ea33ce.zip
Disable available locales checks to avoid warnings running the tests
Diffstat (limited to 'activesupport/test/abstract_unit.rb')
-rw-r--r--activesupport/test/abstract_unit.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/test/abstract_unit.rb b/activesupport/test/abstract_unit.rb
index 4600855998..1dfa3833f0 100644
--- a/activesupport/test/abstract_unit.rb
+++ b/activesupport/test/abstract_unit.rb
@@ -24,6 +24,9 @@ Thread.abort_on_exception = true
# 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
+
# Skips the current run on Rubinius using Minitest::Assertions#skip
def rubinius_skip(message = '')
skip message if RUBY_ENGINE == 'rbx'