(self)
| 39 | async def test_method_view(app: Quart) -> None: |
| 40 | class Views(MethodView): |
| 41 | async def get(self) -> ResponseReturnValue: |
| 42 | return "GET" |
| 43 | |
| 44 | async def post(self) -> ResponseReturnValue: |
| 45 | return "POST" |
no outgoing calls
no test coverage detected