()
| 18 | |
| 19 | @app.route("/json", methods=["POST"]) |
| 20 | def post_json(): |
| 21 | flask.request.get_json() |
| 22 | return None |
| 23 | |
| 24 | rv = client.post("/json", data=None, content_type="application/json") |
| 25 | assert rv.status_code == 400 |
nothing calls this directly
no outgoing calls
no test coverage detected