(self)
| 1976 | self.assertEqual(f.read1(), b"") |
| 1977 | |
| 1978 | def test_read1_0(self): |
| 1979 | with ZstdFile(io.BytesIO(COMPRESSED_DAT)) as f: |
| 1980 | self.assertEqual(f.read1(0), b"") |
| 1981 | |
| 1982 | def test_read1_10(self): |
| 1983 | with ZstdFile(io.BytesIO(COMPRESSED_DAT)) as f: |
nothing calls this directly
no test coverage detected