()
| 469 | |
| 470 | @pytest.mark.anyio |
| 471 | async def test_aiter_raw(): |
| 472 | response = httpx.Response(200, content=async_streaming_body()) |
| 473 | |
| 474 | raw = b"" |
| 475 | async for part in response.aiter_raw(): |
| 476 | raw += part |
| 477 | assert raw == b"Hello, world!" |
| 478 | |
| 479 | |
| 480 | @pytest.mark.anyio |
nothing calls this directly
no test coverage detected