()
| 196 | def test_json_attr(app, client): |
| 197 | @app.route("/add", methods=["POST"]) |
| 198 | def add(): |
| 199 | json = flask.request.get_json() |
| 200 | return str(json["a"] + json["b"]) |
| 201 | |
| 202 | rv = client.post( |
| 203 | "/add", |
nothing calls this directly
no outgoing calls
no test coverage detected