()
| 282 | def test_client_json_no_app_context(app, client): |
| 283 | @app.route("/hello", methods=["POST"]) |
| 284 | def hello(): |
| 285 | return f"Hello, {flask.request.json['name']}!" |
| 286 | |
| 287 | class Namespace: |
| 288 | count = 0 |
nothing calls this directly
no outgoing calls
no test coverage detected