(self, name, *args)
| 127 | return app.get_handler_delegate(request, handler) |
| 128 | |
| 129 | def reverse_url(self, name, *args): |
| 130 | handler_path = "/" + name |
| 131 | return handler_path if handler_path in self.routes else None |
| 132 | |
| 133 | |
| 134 | class CustomRouterTestCase(AsyncHTTPTestCase): |
no outgoing calls
no test coverage detected