(app: Quart)
| 156 | |
| 157 | |
| 158 | async def test_not_found_error(app: Quart) -> None: |
| 159 | test_client = app.test_client() |
| 160 | response = await test_client.get("/not_found/") |
| 161 | assert response.status_code == 404 |
| 162 | assert b"Not Found" in (await response.get_data()) |
| 163 | |
| 164 | |
| 165 | async def test_make_response_str(app: Quart) -> None: |
nothing calls this directly
no test coverage detected