aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2015-05-05 06:53:13 +0930
committerMatthew Draper <matthew@trebex.net>2015-05-05 06:53:13 +0930
commita95151bb13529bdade475ba781421b647835d493 (patch)
treea31df09789438ca88e4a77db01269b984a486adf /actionview/test/template
parentfaaed863dd374b6c3c3ee0e317ed213edce1dd4d (diff)
parent9c8542bb12fac316253addf24e4fa2af34d33d7d (diff)
downloadrails-a95151bb13529bdade475ba781421b647835d493.tar.gz
rails-a95151bb13529bdade475ba781421b647835d493.tar.bz2
rails-a95151bb13529bdade475ba781421b647835d493.zip
Merge pull request #19998 from imanel/fix-missing-translation
Handle raise flag in translate when both main and default translation is missing.
Diffstat (limited to 'actionview/test/template')
-rw-r--r--actionview/test/template/translation_helper_test.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/actionview/test/template/translation_helper_test.rb b/actionview/test/template/translation_helper_test.rb
index df096b3c3a..57b78112f9 100644
--- a/actionview/test/template/translation_helper_test.rb
+++ b/actionview/test/template/translation_helper_test.rb
@@ -157,6 +157,19 @@ class TranslationHelperTest < ActiveSupport::TestCase
assert_equal true, translation.html_safe?
end
+ def test_translate_with_missing_default
+ translation = translate(:'translations.missing', :default => :'translations.missing_html')
+ expected = '<span class="translation_missing" title="translation missing: en.translations.missing_html">Missing Html</span>'
+ assert_equal expected, translation
+ assert_equal true, translation.html_safe?
+ end
+
+ def test_translate_with_missing_default_and_raise_option
+ assert_raise(I18n::MissingTranslationData) do
+ translate(:'translations.missing', :default => :'translations.missing_html', :raise => true)
+ end
+ end
+
def test_translate_with_two_defaults_named_html
translation = translate(:'translations.missing', :default => [:'translations.missing_html', :'translations.hello_html'])
assert_equal '<a>Hello World</a>', translation