(self, request, **kwargs)
| 78 | self.app = app |
| 79 | |
| 80 | def find_handler(self, request, **kwargs): |
| 81 | handler = GetResource if request.method == "GET" else PostResource |
| 82 | return self.app.get_handler_delegate(request, handler, path_args=[request.path]) |
| 83 | |
| 84 | |
| 85 | class HTTPMethodRouterTestCase(AsyncHTTPTestCase): |
nothing calls this directly
no test coverage detected