aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/url_helper_test.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-20 22:02:22 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-20 22:02:22 +0000
commita61360688cd0e1f43f523866384d0d0796a4ea73 (patch)
treedfa09275f2165b1af8363642b67d85b5702cf793 /actionpack/test/template/url_helper_test.rb
parentee8d110068e958b400987b5f224e14e292fd0558 (diff)
downloadrails-a61360688cd0e1f43f523866384d0d0796a4ea73.tar.gz
rails-a61360688cd0e1f43f523866384d0d0796a4ea73.tar.bz2
rails-a61360688cd0e1f43f523866384d0d0796a4ea73.zip
Changed .htaccess to allow dispatch.* to be called from a sub-directory as part of the push with Action Pack to make Rails work on non-vhost setups #826 [Nicholas Seckar/Tobias Luetke] Fixed routing and helpers to make Rails work on non-vhost setups #826 [Nicholas Seckar/Tobias Luetke]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@945 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/template/url_helper_test.rb')
-rw-r--r--actionpack/test/template/url_helper_test.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/actionpack/test/template/url_helper_test.rb b/actionpack/test/template/url_helper_test.rb
index 8e0016f0fd..32b98eb5dc 100644
--- a/actionpack/test/template/url_helper_test.rb
+++ b/actionpack/test/template/url_helper_test.rb
@@ -36,28 +36,6 @@ class UrlHelperTest < Test::Unit::TestCase
)
end
- def test_link_image_to
- assert_equal(
- "<a href=\"http://www.example.com\"><img alt=\"Rss\" border=\"0\" height=\"45\" src=\"/images/rss.png\" width=\"30\" /></a>",
- link_image_to("rss", "http://www.example.com", "size" => "30x45", "border" => "0")
- )
-
- assert_equal(
- "<a href=\"http://www.example.com\"><img alt=\"Rss\" border=\"0\" height=\"45\" src=\"/images/rss.png\" width=\"30\" /></a>",
- link_to(image_tag("rss", :size => "30x45", :border => 0), "http://www.example.com")
- )
-
- assert_equal(
- "<a class=\"admin\" href=\"http://www.example.com\"><img alt=\"Feed\" height=\"45\" src=\"/images/rss.gif\" width=\"30\" /></a>",
- link_image_to("rss.gif", "http://www.example.com", "size" => "30x45", "alt" => "Feed", "class" => "admin")
- )
-
- assert_equal link_image_to("rss", "http://www.example.com", "size" => "30x45"),
- link_image_to("rss", "http://www.example.com", :size => "30x45")
- assert_equal link_image_to("rss.gif", "http://www.example.com", "size" => "30x45", "alt" => "Feed", "class" => "admin"),
- link_image_to("rss.gif", "http://www.example.com", :size => "30x45", :alt => "Feed", :class => "admin")
- end
-
def test_link_to_unless
assert_equal "Showing", link_to_unless(true, "Showing", :action => "show", :controller => "weblog")
assert "<a href=\"http://www.example.com\">Listing</a>", link_to_unless(false, "Listing", :action => "list", :controller => "weblog")