| 20 | |
| 21 | |
| 22 | class AsyncView(View): |
| 23 | methods = ["GET", "POST"] |
| 24 | |
| 25 | async def dispatch_request(self): |
| 26 | await asyncio.sleep(0) |
| 27 | return request.method |
| 28 | |
| 29 | |
| 30 | class AsyncMethodView(MethodView): |
nothing calls this directly
no outgoing calls
no test coverage detected