module ActionController::TestCase::Behavior

def patch(action, **args)

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