instance method
process_with_kwargs
Ruby on Rails 5.0.7.2
Since v5.0.7.2 Last seen in v5.0.7.2 Private — implementation detail, not part of the public APISignature
process_with_kwargs(http_method, path, *args)
No documentation comment.
Parameters
-
http_methodreq -
pathreq -
argsrest
Source
# File actionpack/lib/action_dispatch/testing/integration.rb, line 359
def process_with_kwargs(http_method, path, *args)
if kwarg_request?(args)
process(http_method, path, *args)
else
non_kwarg_request_warning if args.any?
process(http_method, path, { params: args[0], headers: args[1] })
end
end
Defined in actionpack/lib/action_dispatch/testing/integration.rb line 359
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Integration::Session