module ActionDispatch::Integration::RequestHelpers

def put(path, **args)

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