module ActionController::TestCase::Behavior

def put(action, **args)

See +get+ for more details.
Simulate a PUT request with the given parameters and set/volley the response.
def put(action, **args)
  process(action, method: "PUT", **args)
end