提交 eac8b9cf 编写于 作者: Ł Łukasz Strzałkowski 提交者: Piotr Sarnacki

Removed tests for setting default value of *path in route

If we want to have this - we have to change Rack::Mount source
上级 b478ff91
......@@ -330,20 +330,6 @@ def test_non_controllers_cannot_be_matched
assert_raise(ActionController::RoutingError) { rs.recognize_path("/not_a/show/10") }
end
def test_paths_do_not_accept_defaults
assert_raise(ActionController::RoutingError) do
rs.draw do
match 'file/*path' => 'content#show_file', :path => %w(fake default), :as => 'path'
match ':controller/:action/:id'
end
end
rs.draw do
match 'file/*path', :to => 'content#show_file', :path => [], :as => 'path'
match ':controller/:action/:id'
end
end
def test_should_list_options_diff_when_routing_constraints_dont_match
rs.draw do
match 'post/:id' => 'post#show', :constraints => { :id => /\d+/ }, :as => 'post'
......@@ -1614,17 +1600,6 @@ def setup
@routes.draw(&Mapping)
end
def test_add_route
@routes.clear!
assert_raise(ActionController::RoutingError) do
@routes.draw do
match 'file/*path' => 'content#show_file', :path => %w(fake default), :as => :path
match ':controller(/:action(/:id))'
end
end
end
def test_recognize_path
assert_equal({:controller => 'admin/users', :action => 'index'}, @routes.recognize_path('/admin/users', :method => :get))
assert_equal({:controller => 'admin/users', :action => 'create'}, @routes.recognize_path('/admin/users', :method => :post))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册