(app: Quart)
| 223 | |
| 224 | |
| 225 | async def test_root_path(app: Quart) -> None: |
| 226 | test_client = app.test_client() |
| 227 | response = await test_client.get("/", root_path="/bob") |
| 228 | assert response.status_code == 404 |
| 229 | response = await test_client.get("/bob/", root_path="/bob") |
| 230 | assert response.status_code == 200 |
| 231 | |
| 232 | |
| 233 | async def test_stream(app: Quart) -> None: |
nothing calls this directly
no test coverage detected