(self, read_args: tuple[typing.Any, ...])
| 312 | |
| 313 | @pytest.mark.parametrize("read_args", ((), (None,), (-1,))) |
| 314 | def test_reference_read_until_eof(self, read_args: tuple[typing.Any, ...]) -> None: |
| 315 | fp = BytesIO(b"foo") |
| 316 | r = HTTPResponse(fp, preload_content=False) |
| 317 | assert r.read(*read_args) == b"foo" |
| 318 | |
| 319 | def test_reference_read1(self) -> None: |
| 320 | fp = BytesIO(b"foobar") |
nothing calls this directly
no test coverage detected