diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2019-01-14 15:25:52 -0500 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2019-01-17 16:08:31 -0500 |
commit | 60c8a03c8d1e45e48fcb1055ba4c49ed3d5ff78f (patch) | |
tree | 671c34049bdb773a23cbba4f625001daeb11332d /actionview/test | |
parent | e70d3df7c9b05c129b0fdcca57f66eca316c5cfc (diff) | |
download | rails-60c8a03c8d1e45e48fcb1055ba4c49ed3d5ff78f.tar.gz rails-60c8a03c8d1e45e48fcb1055ba4c49ed3d5ff78f.tar.bz2 rails-60c8a03c8d1e45e48fcb1055ba4c49ed3d5ff78f.zip |
Remove deprecated image_alt helper
Diffstat (limited to 'actionview/test')
-rw-r--r-- | actionview/test/template/asset_tag_helper_test.rb | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/actionview/test/template/asset_tag_helper_test.rb b/actionview/test/template/asset_tag_helper_test.rb index e68f03d1f4..e371a87614 100644 --- a/actionview/test/template/asset_tag_helper_test.rb +++ b/actionview/test/template/asset_tag_helper_test.rb @@ -512,26 +512,6 @@ class AssetTagHelperTest < ActionView::TestCase UrlToImageToTag.each { |method, tag| assert_dom_equal(tag, eval(method)) } end - def test_image_alt - [nil, "/", "/foo/bar/", "foo/bar/"].each do |prefix| - assert_deprecated do - assert_equal "Rails", image_alt("#{prefix}rails.png") - end - assert_deprecated do - assert_equal "Rails", image_alt("#{prefix}rails-9c0a079bdd7701d7e729bd956823d153.png") - end - assert_deprecated do - assert_equal "Rails", image_alt("#{prefix}rails-f56ef62bc41b040664e801a38f068082a75d506d9048307e8096737463503d0b.png") - end - assert_deprecated do - assert_equal "Long file name with hyphens", image_alt("#{prefix}long-file-name-with-hyphens.png") - end - assert_deprecated do - assert_equal "Long file name with underscores", image_alt("#{prefix}long_file_name_with_underscores.png") - end - end - end - def test_image_tag ImageLinkToTag.each { |method, tag| assert_dom_equal(tag, eval(method)) } end |