ActionDispatch::Integration::RequestHelpers

module ActionDispatch::Integration::RequestHelpers

Public Instance Methods

delete(path, parameters = nil, headers_or_env = nil) Show source

Performs a DELETE request with the given parameters. See #get for more details.

# File actionpack/lib/action_dispatch/testing/integration.rb, line 55
def delete(path, parameters = nil, headers_or_env = nil)
  process :delete, path, parameters, headers_or_env
end