(self)
| 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: |
| 2246 | f.seek(-555, 2) |
| 2247 | self.assertEqual(f.read(), DECOMPRESSED_100_PLUS_32KB[-555:]) |
| 2248 | |
| 2249 | def test_seek_backward(self): |
| 2250 | with ZstdFile(io.BytesIO(COMPRESSED_100_PLUS_32KB)) as f: |
nothing calls this directly
no test coverage detected