提交 ddd4d28b 编写于 作者: R Richard Schneeman 提交者: Rafael Mendonça França

Merge pull request #29533 from jdelStrother/missing_url_formats

Fix missing formats in route-set URLs
上级 3c98aa4a
......@@ -248,6 +248,8 @@ def handle_positional_args(controller_options, inner_options, args, result, path
if args.size < path_params_size
path_params -= controller_options.keys
path_params -= result.keys
else
path_params = path_params.dup
end
inner_options.each_key do |key|
path_params.delete(key)
......
......@@ -138,6 +138,15 @@ def call(env)
assert_equal '/a/users/1', url_helpers.user_path(1, foo: 'a')
end
test "implicit path components consistently return the same result" do
draw do
resources :users, to: SimpleApp.new("foo#index")
end
assert_equal "/users/1.json", url_helpers.user_path(1, :json)
assert_equal "/users/1.json", url_helpers.user_path(1, format: :json)
assert_equal "/users/1.json", url_helpers.user_path(1, :json)
end
private
def draw(&block)
@set.draw(&block)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册