(self)
| 2236 | self.assertEqual(f.read(), DECOMPRESSED_100_PLUS_32KB[123:]) |
| 2237 | |
| 2238 | def test_seek_forward_relative_to_current(self): |
| 2239 | with ZstdFile(io.BytesIO(COMPRESSED_100_PLUS_32KB)) as f: |
| 2240 | f.read(100) |
| 2241 | f.seek(1236, 1) |
| 2242 | self.assertEqual(f.read(), DECOMPRESSED_100_PLUS_32KB[1336:]) |
| 2243 | |
| 2244 | def test_seek_forward_relative_to_end(self): |
| 2245 | with ZstdFile(io.BytesIO(COMPRESSED_100_PLUS_32KB)) as f: |
nothing calls this directly
no test coverage detected