(client_east: AsyncClient)
| 156 | |
| 157 | @pytest.mark.anyio |
| 158 | async def test_404_east(client_east: AsyncClient) -> None: |
| 159 | response = await client_east.get("/404") |
| 160 | assert response.status_code == 404, response.text |
| 161 | data = response.json() |
| 162 | assert isinstance(data["detail"], str) |
| 163 | |
| 164 | |
| 165 | @pytest.mark.anyio |
nothing calls this directly
no test coverage detected
searching dependent graphs…