Method: ActionDispatch::Integration::RequestHelpers#get

Defined in:
lib/action_dispatch/testing/integration.rb

#get(path, **args) ⇒ Object

Performs a GET request with the given parameters. See ActionDispatch::Integration::Session#process for more details.



15
16
17
# File 'lib/action_dispatch/testing/integration.rb', line 15

def get(path, **args)
  process(:get, path, **args)
end