()
| 65 | |
| 66 | |
| 67 | async def test_http_exception_other(): |
| 68 | # Test other HTTP exceptions |
| 69 | exc = HTTPException(status_code=404, detail="Not found") |
| 70 | response = await handle_error(Request({"type": "http"}), exc) |
| 71 | assert response.status_code == 404 |
| 72 | assert response.body == b'{"detail":"Not found"}' |
| 73 | |
| 74 | |
| 75 | async def test_marimo_http_exception(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…