()
| 5 | |
| 6 | |
| 7 | async def test_debug() -> None: |
| 8 | app = Quart(__name__) |
| 9 | async with app.test_request_context("/"): |
| 10 | response = await traceback_response(Exception("Unique error")) |
| 11 | |
| 12 | assert response.status_code == 500 |
| 13 | assert b"Unique error" in (await response.get_data()) |
nothing calls this directly
no test coverage detected
searching dependent graphs…