module ActionDispatch::Integration::RequestHelpers
def get(path, parameters = nil, headers = nil)
You can also perform POST, PUT, DELETE, and HEAD requests with +post+,
response object.
object's @response instance variable will point to the same
called from an ActionDispatch::IntegrationTest object, then that
inspect the details of the response. Furthermore, if this method was
This method returns an Response object, which one can use to
automatically be upcased, with the prefix 'HTTP_' added if needed.
- +headers+: Additional HTTP headers to pass, as a Hash. The keys will
multipart/form-data).
(application/x-www-form-urlencoded or
a Hash, or a String that is appropriately encoded
be +nil+,
- +parameters+: The HTTP parameters that you want to pass. This may
request.
- +path+: The URI (as a String) on which you want to perform a GET
Performs a GET request with the given parameters.
def get(path, parameters = nil, headers = nil) process :get, path, parameters, headers end