(app: Quart)
| 140 | |
| 141 | |
| 142 | async def test_generic_error(app: Quart) -> None: |
| 143 | test_client = app.test_client() |
| 144 | response = await test_client.get("/error/") |
| 145 | assert response.status_code == 409 |
| 146 | assert b"Something Unique" in (await response.get_data()) |
| 147 | |
| 148 | |
| 149 | async def test_url_defaults(app: Quart) -> None: |
nothing calls this directly
no test coverage detected