Kill mock routing assertion that tests router implementation

This commit is contained in:
Joshua Peek 2009-10-10 20:34:32 -05:00
parent e61bc8e29f
commit 8b46c50eac

@ -295,19 +295,6 @@ def test_named_route_with_nested_controller
x.send(:users_url)) x.send(:users_url))
end end
def test_optimised_named_route_call_never_uses_url_for
rs.draw do |map|
map.users 'admin/user', :controller => '/admin/user', :action => 'index'
map.user 'admin/user/:id', :controller=>'/admin/user', :action=>'show'
end
x = setup_for_named_route
x.expects(:url_for).never
x.send(:users_url)
x.send(:users_path)
x.send(:user_url, 2, :foo=>"bar")
x.send(:user_path, 3, :bar=>"foo")
end
def test_optimised_named_route_with_host def test_optimised_named_route_with_host
rs.draw do |map| rs.draw do |map|
map.pages 'pages', :controller => 'content', :action => 'show_page', :host => 'foo.com' map.pages 'pages', :controller => 'content', :action => 'show_page', :host => 'foo.com'