(e)
| 287 | |
| 288 | @app.errorhandler(Exception) |
| 289 | def handle_exception(e): |
| 290 | return self.report_error(e) |
| 291 | |
| 292 | assert client.get("/custom").data == b"direct Custom" |
| 293 | assert client.get("/error").data == b"direct KeyError" |
nothing calls this directly
no test coverage detected