(e)
| 273 | |
| 274 | @app.errorhandler(HTTPException) |
| 275 | def handle_http(e): |
| 276 | assert isinstance(e, HTTPException) |
| 277 | return str(e.code) |
| 278 | |
| 279 | assert client.get("/error").data == b"500" |
| 280 | assert client.get("/abort").data == b"500" |
nothing calls this directly
no outgoing calls
no test coverage detected