diff options
author | Bernard Potocki <bernard.potocki@imanel.org> | 2015-05-04 23:46:25 +0200 |
---|---|---|
committer | Bernard Potocki <bernard.potocki@imanel.org> | 2015-05-04 23:46:25 +0200 |
commit | 3d8b783d131796f1e85ecd0ce33c3c2374533958 (patch) | |
tree | 0bc9dc49931ae95f78c3b468264478c265c72f39 /actionview/test | |
parent | e5139f17d468a8dfe2f2d1ea45e36ed256e4b4bd (diff) | |
download | rails-3d8b783d131796f1e85ecd0ce33c3c2374533958.tar.gz rails-3d8b783d131796f1e85ecd0ce33c3c2374533958.tar.bz2 rails-3d8b783d131796f1e85ecd0ce33c3c2374533958.zip |
Remove :rescue_format option for translate helper since it's no longer supported by I18n.
Diffstat (limited to 'actionview/test')
-rw-r--r-- | actionview/test/template/translation_helper_test.rb | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/actionview/test/template/translation_helper_test.rb b/actionview/test/template/translation_helper_test.rb index 57b78112f9..5dc281adb2 100644 --- a/actionview/test/template/translation_helper_test.rb +++ b/actionview/test/template/translation_helper_test.rb @@ -41,8 +41,8 @@ class TranslationHelperTest < ActiveSupport::TestCase I18n.backend.reload! end - def test_delegates_to_i18n_setting_the_rescue_format_option_to_html - I18n.expects(:translate).with(:foo, :locale => 'en', :raise=>true).returns("") + def test_delegates_setting_to_i18n + I18n.expects(:translate).with(:foo, :locale => 'en', :raise => true).returns("") translate :foo, :locale => 'en' end @@ -58,12 +58,6 @@ class TranslationHelperTest < ActiveSupport::TestCase assert_equal true, translate(:"translations.missing").html_safe? end - def test_returns_missing_translation_message_using_nil_as_rescue_format - expected = 'translation missing: en.translations.missing' - assert_equal expected, translate(:"translations.missing", :rescue_format => nil) - assert_equal false, translate(:"translations.missing", :rescue_format => nil).html_safe? - end - def test_raises_missing_translation_message_with_raise_config_option ActionView::Base.raise_on_missing_translations = true @@ -96,12 +90,6 @@ class TranslationHelperTest < ActiveSupport::TestCase I18n.exception_handler = old_exception_handler end - def test_i18n_translate_defaults_to_nil_rescue_format - expected = 'translation missing: en.translations.missing' - assert_equal expected, I18n.translate(:"translations.missing") - assert_equal false, I18n.translate(:"translations.missing").html_safe? - end - def test_translation_returning_an_array expected = %w(foo bar) assert_equal expected, translate(:"translations.array") |