Method: ActionController::TestCase::Behavior#put
- Defined in:
- lib/action_controller/test_case.rb
#put(action, **args) ⇒ Object
Simulate a PUT request with the given parameters and set/volley the response. See get for more details.
449 450 451 |
# File 'lib/action_controller/test_case.rb', line 449 def put(action, **args) process(action, method: "PUT", **args) end |