(path: str, app: Quart)
| 88 | |
| 89 | @pytest.mark.parametrize("path", ["/", "/sync/"]) |
| 90 | async def test_index(path: str, app: Quart) -> None: |
| 91 | test_client = app.test_client() |
| 92 | response = await test_client.get(path) |
| 93 | assert response.status_code == 200 |
| 94 | assert b"index" in (await response.get_data()) |
| 95 | |
| 96 | |
| 97 | async def test_iri(app: Quart) -> None: |
nothing calls this directly
no test coverage detected