module ActionDispatch::Integration::RequestHelpers
def delete(path, **args)
Performs a DELETE request with the given parameters. See ActionDispatch::Integration::Session#process
def delete(path, **args) process(:delete, path, **args) end
def follow_redirect!(headers: {}, **args)
underlying request.
will be performed. Any arguments are passed to the
the same HTTP verb will be used when redirecting, otherwise a GET request
performed on the location header. If the redirection is a 307 or 308 redirect,
redirect, an exception will be raised. Otherwise, the redirect is
Follow a single redirect response. If the last response was not a
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 ActionDispatch::Integration::Session#process
def get(path, **args) process(:get, path, **args) end
def head(path, **args)
Performs a HEAD request with the given parameters. See ActionDispatch::Integration::Session#process
def head(path, **args) process(:head, path, **args) end
def options(path, **args)
Performs an OPTIONS request with the given parameters. See ActionDispatch::Integration::Session#process
def options(path, **args) process(:options, path, **args) end
def patch(path, **args)
Performs a PATCH request with the given parameters. See ActionDispatch::Integration::Session#process
def patch(path, **args) process(:patch, path, **args) end
def post(path, **args)
Performs a POST request with the given parameters. See ActionDispatch::Integration::Session#process
def post(path, **args) process(:post, path, **args) end
def put(path, **args)
Performs a PUT request with the given parameters. See ActionDispatch::Integration::Session#process
def put(path, **args) process(:put, path, **args) end