提交 974467d7 编写于 作者: R Rafael Mendonça França

Add test to avoid regression of 1bfc5b40

上级 1bfc5b40
......@@ -281,6 +281,8 @@ def self.call(params, request)
scope(':version', :version => /.+/) do
resources :users, :id => /.+?/, :format => /json|xml/
end
get "products/list"
end
get 'sprockets.js' => ::TestRoutingMapper::SprocketsApp
......@@ -1300,6 +1302,12 @@ def test_match_shorthand_inside_namespace
assert_equal 'account#shorthand', @response.body
end
def test_match_shorthand_inside_namespace_with_controller
assert_equal '/api/products/list', api_products_list_path
get '/api/products/list'
assert_equal 'api/products#list', @response.body
end
def test_dynamically_generated_helpers_on_collection_do_not_clobber_resources_url_helper
assert_equal '/replies', replies_path
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册