method

process_with_kwargs

rails latest stable - Class: ActionDispatch::Integration::Session

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v5.0.0.1) is shown here.

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