(self)
| 2231 | self.assertEqual(f.read(), DECOMPRESSED_100_PLUS_32KB[555:]) |
| 2232 | |
| 2233 | def test_seek_forward_across_streams(self): |
| 2234 | with ZstdFile(io.BytesIO(COMPRESSED_100_PLUS_32KB * 2)) as f: |
| 2235 | f.seek(len(DECOMPRESSED_100_PLUS_32KB) + 123) |
| 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: |
nothing calls this directly
no test coverage detected