()
| 551 | |
| 552 | |
| 553 | def test_iter_bytes_with_empty_response(): |
| 554 | response = httpx.Response(200, content=b"") |
| 555 | parts = list(response.iter_bytes()) |
| 556 | assert parts == [] |
| 557 | |
| 558 | |
| 559 | def test_iter_bytes_doesnt_return_empty_chunks(): |
nothing calls this directly
no test coverage detected