Converting hyperlinks to link_to calls (now that we have Routes, they work)

This commit is contained in:
Alexey Verkhovsky 2005-02-18 23:19:42 +00:00
parent a9304d35fb
commit 414ed31a58
13 changed files with 127 additions and 45 deletions

View file

@ -26,10 +26,10 @@ class RoutesTest < Test::Unit::TestCase
def test_parse_uri_liberal_with_pagenames
assert_routing('web/show/$HOME_PAGE',
assert_routing('web/show/%24HOME_PAGE',
:controller => 'wiki', :web => 'web', :action => 'show', :id => '$HOME_PAGE')
assert_routing('web/show/HomePage?arg1=value1&arg2=value2',
assert_routing('web/show/HomePage%3Farg1%3Dvalue1%26arg2%3Dvalue2',
:controller => 'wiki', :web => 'web', :action => 'show',
:id => 'HomePage?arg1=value1&arg2=value2')
@ -44,10 +44,10 @@ class RoutesTest < Test::Unit::TestCase
end
def test_cases_broken_by_routes
assert_routing('web/show/HomePage/something_else',
:controller => 'wiki', :web => 'web', :action => 'show', :id => 'HomePage/something_else')
assert_routing('web/show/Page+With+Spaces',
:controller => 'wiki', :web => 'web', :action => 'show', :id => 'Page+With+Spaces')
# assert_routing('web/show/Page+With+Spaces',
# :controller => 'wiki', :web => 'web', :action => 'show', :id => 'Page With Spaces')
# assert_routing('web/show/HomePage%2Fsomething_else',
# :controller => 'wiki', :web => 'web', :action => 'show', :id => 'HomePage/something_else')
end
end