(self)
| 268 | assert r.data is None |
| 269 | |
| 270 | def test_none(self) -> None: |
| 271 | r = HTTPResponse(None) # type: ignore[arg-type] |
| 272 | assert r.data is None |
| 273 | |
| 274 | def test_preload(self) -> None: |
| 275 | fp = BytesIO(b"foo") |
nothing calls this directly
no test coverage detected