(app: Quart)
| 231 | |
| 232 | |
| 233 | async def test_stream(app: Quart) -> None: |
| 234 | test_client = app.test_client() |
| 235 | response = await test_client.get("/stream") |
| 236 | assert (await response.get_data()) == b"Hello World" |
nothing calls this directly
no test coverage detected