module ActionController::TestCase::Behavior

def post(action, **args)

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