diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-12-16 16:04:07 -0200 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-12-17 09:05:41 -0200 |
commit | 6802196a6b7db928f9dc70fe5a4f3b61a3ea33ce (patch) | |
tree | 23ce7d9e431807174591f9c74fd7cda8aa32460f /actionmailer | |
parent | c445c6d1b99c987b7f98943db46f705a3acc400f (diff) | |
download | rails-6802196a6b7db928f9dc70fe5a4f3b61a3ea33ce.tar.gz rails-6802196a6b7db928f9dc70fe5a4f3b61a3ea33ce.tar.bz2 rails-6802196a6b7db928f9dc70fe5a4f3b61a3ea33ce.zip |
Disable available locales checks to avoid warnings running the tests
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/test/abstract_unit.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/actionmailer/test/abstract_unit.rb b/actionmailer/test/abstract_unit.rb index aa18c512c7..cf790c7487 100644 --- a/actionmailer/test/abstract_unit.rb +++ b/actionmailer/test/abstract_unit.rb @@ -20,6 +20,9 @@ ActionMailer::Base.send(:include, ActionView::Layouts) # 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 + # Bogus template processors ActionView::Template.register_template_handler :haml, lambda { |template| "Look its HAML!".inspect } ActionView::Template.register_template_handler :bak, lambda { |template| "Lame backup".inspect } |