()
| 1115 | |
| 1116 | async def test_data_stream(loop, buf, conn) -> None: |
| 1117 | async def gen(): |
| 1118 | yield b"binary data" |
| 1119 | yield b" result" |
| 1120 | |
| 1121 | req = ClientRequest("POST", URL("http://python.org/"), data=gen(), loop=loop) |
| 1122 | assert req.chunked |
no test coverage detected