()
| 251 | def test_full_url_request(app, client): |
| 252 | @app.route("/action", methods=["POST"]) |
| 253 | def action(): |
| 254 | return "x" |
| 255 | |
| 256 | with client: |
| 257 | rv = client.post("http://domain.com/action?vodka=42", data={"gin": 43}) |
nothing calls this directly
no outgoing calls
no test coverage detected