module ActionDispatch::Integration::RequestHelpers
def delete(path, **args)
Performs a DELETE request with the given parameters. See
def delete(path, **args) process(:delete, path, **args) end
def follow_redirect!(headers: {}, **args)
arguments are passed to the underlying request.
be used when redirecting, otherwise a GET request will be performed. Any
header. If the redirection is a 307 or 308 redirect, the same HTTP verb will
exception will be raised. Otherwise, the redirect is performed on the location
Follow a single redirect response. If the last response was not a redirect, an
def follow_redirect!(headers: {}, **args) raise "not a redirect! #{status} #{status_message}" unless redirect? method = if [307, 308].include?(response.status) request.method.downcase else :get end if [ :HTTP_REFERER, "HTTP_REFERER" ].none? { |key| headers.key? key } headers["HTTP_REFERER"] = request.url end public_send(method, response.location, headers: headers, **args) status end
def get(path, **args)
Performs a GET request with the given parameters. See
def get(path, **args) process(:get, path, **args) end
def head(path, **args)
Performs a HEAD request with the given parameters. See
def head(path, **args) process(:head, path, **args) end
def options(path, **args)
Performs an OPTIONS request with the given parameters. See
def options(path, **args) process(:options, path, **args) end
def patch(path, **args)
Performs a PATCH request with the given parameters. See
def patch(path, **args) process(:patch, path, **args) end
def post(path, **args)
Performs a POST request with the given parameters. See
def post(path, **args) process(:post, path, **args) end
def put(path, **args)
Performs a PUT request with the given parameters. See
def put(path, **args) process(:put, path, **args) end