()
| 439 | |
| 440 | |
| 441 | def test_iter_raw_on_async(): |
| 442 | response = httpx.Response( |
| 443 | 200, |
| 444 | content=async_streaming_body(), |
| 445 | ) |
| 446 | |
| 447 | with pytest.raises(RuntimeError): |
| 448 | list(response.iter_raw()) |
| 449 | |
| 450 | |
| 451 | def test_close_on_async(): |
nothing calls this directly
no test coverage detected