()
| 497 | |
| 498 | @pytest.mark.anyio |
| 499 | async def test_aiter_raw_on_sync(): |
| 500 | response = httpx.Response( |
| 501 | 200, |
| 502 | content=streaming_body(), |
| 503 | ) |
| 504 | |
| 505 | with pytest.raises(RuntimeError): |
| 506 | [part async for part in response.aiter_raw()] |
| 507 | |
| 508 | |
| 509 | @pytest.mark.anyio |
nothing calls this directly
no test coverage detected