module ActionDispatch::Integration::RequestHelpers

def delete(path, **args)

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