From 00ee9b33698715fb9265a227715a443e21762ea1 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 8 Apr 2010 11:46:56 -0700 Subject: Revert "adds #favicon_link_tag and #apple_touch_icon_link_tag" -- these tags are too specific. This reverts commit 6891f46d10957f21f200fc4dc2b6076ff411b1da, ec8610cfdc32d0fe816fb22405e00ef1b6c90d73, and d18ff1b7efd96e7c08bc1a15137735be45f87e07. --- actionpack/test/template/asset_tag_helper_test.rb | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'actionpack/test') diff --git a/actionpack/test/template/asset_tag_helper_test.rb b/actionpack/test/template/asset_tag_helper_test.rb index 10ee9c7881..223a430f92 100644 --- a/actionpack/test/template/asset_tag_helper_test.rb +++ b/actionpack/test/template/asset_tag_helper_test.rb @@ -157,18 +157,6 @@ class AssetTagHelperTest < ActionView::TestCase %(image_tag("mouse.png", :mouseover => image_path("mouse_over.png"))) => %(Mouse) } - FaviconLinkToTag = { - %(favicon_link_tag) => %(), - %(favicon_link_tag 'favicon.ico') => %(), - %(favicon_link_tag 'favicon.ico', :rel => 'foo') => %(), - %(favicon_link_tag 'favicon.ico', :rel => 'foo', :type => 'bar') => %() - } - - AppleTouchIconLinkToTag = { - %(apple_touch_icon_link_tag) => %(), - %(apple_touch_icon_link_tag 'my_site.png') => %() - } - VideoPathToTag = { %(video_path("xml")) => %(/videos/xml), %(video_path("xml.ogg")) => %(/videos/xml.ogg), @@ -343,14 +331,6 @@ class AssetTagHelperTest < ActionView::TestCase ImageLinkToTag.each { |method, tag| assert_dom_equal(tag, eval(method)) } end - def test_favicon_link_tag - FaviconLinkToTag.each { |method, tag| assert_dom_equal(tag, eval(method)) } - end - - def test_apple_touch_link_tag - AppleTouchIconLinkToTag.each { |method, tag| assert_dom_equal(tag, eval(method)) } - end - def test_image_tag_windows_behaviour old_asset_id, ENV["RAILS_ASSET_ID"] = ENV["RAILS_ASSET_ID"], "1" # This simulates the behaviour of File#exist? on windows when testing a file ending in "." -- cgit v1.2.3