module ActionDispatch::Integration::RequestHelpers

def patch(path, **args)

for more details.
Performs a PATCH request with the given parameters. See ActionDispatch::Integration::Session#process
def patch(path, **args)
  process(:patch, path, **args)
end