aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-03-14 13:11:25 -0300
committerwycats <wycats@gmail.com>2010-03-14 14:57:45 -0500
commitd1eed89ac3b72457c0327bf1ff2a2a9cc8842910 (patch)
tree2a3b4479ed3958657a008b350dbcfba338db2d13 /actionpack/test
parentbeeb02076a0b7a8bce59555cd486b96c59e231f0 (diff)
downloadrails-d1eed89ac3b72457c0327bf1ff2a2a9cc8842910.tar.gz
rails-d1eed89ac3b72457c0327bf1ff2a2a9cc8842910.tar.bz2
rails-d1eed89ac3b72457c0327bf1ff2a2a9cc8842910.zip
There's a Ruby issue with File.basename different versions returns different things, so we shouldn't test that
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/template/asset_tag_helper_test.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/actionpack/test/template/asset_tag_helper_test.rb b/actionpack/test/template/asset_tag_helper_test.rb
index d36a763876..c471df861d 100644
--- a/actionpack/test/template/asset_tag_helper_test.rb
+++ b/actionpack/test/template/asset_tag_helper_test.rb
@@ -141,7 +141,6 @@ class AssetTagHelperTest < ActionView::TestCase
ImageLinkToTag = {
%(image_tag("xml.png")) => %(<img alt="Xml" src="/images/xml.png" />),
- %(image_tag("..jpg")) => %(<img alt="..jpg" src="/images/..jpg" />),
%(image_tag("rss.gif", :alt => "rss syndication")) => %(<img alt="rss syndication" src="/images/rss.gif" />),
%(image_tag("gold.png", :size => "45x70")) => %(<img alt="Gold" height="70" src="/images/gold.png" width="45" />),
%(image_tag("gold.png", "size" => "45x70")) => %(<img alt="Gold" height="70" src="/images/gold.png" width="45" />),