(client: TestClient)
| 216 | |
| 217 | |
| 218 | def test_400(client: TestClient) -> None: |
| 219 | response = client.get("/404") |
| 220 | assert response.status_code == 404 |
| 221 | assert response.json() == {"detail": "Not Found"} |
| 222 | |
| 223 | |
| 224 | def test_405(client: TestClient) -> None: |