Method: ActionDispatch::Integration::RequestHelpers#delete
- Defined in:
- actionpack/lib/action_dispatch/testing/integration.rb
#delete(path, parameters = nil, headers = nil) ⇒ Object
Performs a DELETE request with the given parameters. See #get
for more details.
50 51 52 |
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 50 def delete(path, parameters = nil, headers = nil) process :delete, path, parameters, headers end |