| 28 | |
| 29 | |
| 30 | class AsyncMethodView(MethodView): |
| 31 | async def get(self): |
| 32 | await asyncio.sleep(0) |
| 33 | return "GET" |
| 34 | |
| 35 | async def post(self): |
| 36 | await asyncio.sleep(0) |
| 37 | return "POST" |
| 38 | |
| 39 | |
| 40 | @pytest.fixture(name="async_app") |
nothing calls this directly
no outgoing calls
no test coverage detected