module ActionDispatch::Integration::RequestHelpers

def post(path, **args)

for more details.
Performs a POST request with the given parameters. See ActionDispatch::Integration::Session#process
def post(path, **args)
  process(:post, path, **args)
end