()
| 449 | |
| 450 | |
| 451 | def test_close_on_async(): |
| 452 | response = httpx.Response( |
| 453 | 200, |
| 454 | content=async_streaming_body(), |
| 455 | ) |
| 456 | |
| 457 | with pytest.raises(RuntimeError): |
| 458 | response.close() |
| 459 | |
| 460 | |
| 461 | def test_iter_raw_increments_updates_counter(): |
nothing calls this directly
no test coverage detected