method
process_with_kwargs
rails latest stable - Class:
ActionDispatch::Integration::Session
process_with_kwargs(http_method, path, *args)private
No documentation available.
# File actionpack/lib/action_dispatch/testing/integration.rb, line 294
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