(request)
| 65 | |
| 66 | async def test_simple_get(aiohttp_client) -> None: |
| 67 | async def handler(request): |
| 68 | body = await request.read() |
| 69 | assert b"" == body |
| 70 | return web.Response(body=b"OK") |
| 71 | |
| 72 | app = web.Application() |
| 73 | app.router.add_get("/", handler) |
no test coverage detected