diff options
author | Andrew White <andrew.white@unboxed.co> | 2016-11-02 11:44:05 +0000 |
---|---|---|
committer | Andrew White <andrew.white@unboxed.co> | 2016-11-02 16:15:00 +0000 |
commit | 21186270288ef3f8816cecf0aad1e1c537493bee (patch) | |
tree | 958f07c3123d739f890261cdfcdb8d70764d2ed2 /actionmailer/test | |
parent | b82fa5cd2e39bf400f61478173885d6c0b480384 (diff) | |
download | rails-21186270288ef3f8816cecf0aad1e1c537493bee.tar.gz rails-21186270288ef3f8816cecf0aad1e1c537493bee.tar.bz2 rails-21186270288ef3f8816cecf0aad1e1c537493bee.zip |
Fix warning about unset I18n.enforce_available_locales
Diffstat (limited to 'actionmailer/test')
-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 0b076e1ff9..0e35a88e9f 100644 --- a/actionmailer/test/abstract_unit.rb +++ b/actionmailer/test/abstract_unit.rb @@ -42,6 +42,9 @@ ActiveSupport::Deprecation.debug = true ActionView::Template.register_template_handler :haml, lambda { |template| "Look its HAML!".inspect } ActionView::Template.register_template_handler :bak, lambda { |template| "Lame backup".inspect } +# Disable available locale checks to avoid warnings running the test suite. +I18n.enforce_available_locales = false + FIXTURE_LOAD_PATH = File.expand_path('fixtures', File.dirname(__FILE__)) ActionMailer::Base.view_paths = FIXTURE_LOAD_PATH |