()
| 495 | client = test_client_factory(app) |
| 496 | |
| 497 | def post_body() -> Iterator[bytes]: |
| 498 | yield b"foo" |
| 499 | yield b"bar" |
| 500 | |
| 501 | response = client.post("/", data=post_body()) # type: ignore |
| 502 | assert response.json() == {"body": "foobar"} |
no outgoing calls
no test coverage detected