(app: Quart)
| 95 | |
| 96 | |
| 97 | async def test_iri(app: Quart) -> None: |
| 98 | test_client = app.test_client() |
| 99 | response = await test_client.get("/❤️") |
| 100 | assert "💔".encode() in (await response.get_data()) |
| 101 | |
| 102 | |
| 103 | async def test_options(app: Quart) -> None: |
nothing calls this directly
no test coverage detected