Merge pull request #6481 from schneems/schneems/sextant-routes

Remove Unnecessary Test from route_inspect_test
This commit is contained in:
Rafael Mendonça França 2012-05-24 19:35:59 -07:00
commit 641ab7cedf
1 changed files with 0 additions and 9 deletions

View File

@ -164,14 +164,5 @@ module ApplicationTests
assert_equal " bar GET /bar(.:format) redirect(307, path: /foo/bar)", output[1]
assert_equal "foobar GET /foobar(.:format) redirect(301)", output[2]
end
def test_presenter
output = draw do
get "/foo" => redirect("/foo/bar"), :constraints => { :subdomain => "admin" }
get "/bar" => redirect(path: "/foo/bar", status: 307)
get "/foobar" => redirect{ "/foo/bar" }
end
assert_equal output.join("\n"), Rails::Application::RoutePresenter.display_routes(@set.routes)
end
end
end