(e)
| 75 | |
| 76 | @app.errorhandler(ChildExceptionRegistered) |
| 77 | def child_exception_handler(e): |
| 78 | assert isinstance(e, ChildExceptionRegistered) |
| 79 | return "child-registered" |
| 80 | |
| 81 | @app.route("/parent") |
| 82 | def parent_test(): |
nothing calls this directly
no outgoing calls
no test coverage detected