(self)
| 2292 | def test_seek_not_seekable(self): |
| 2293 | class C(io.BytesIO): |
| 2294 | def seekable(self): |
| 2295 | return False |
| 2296 | obj = C(COMPRESSED_100_PLUS_32KB) |
| 2297 | with ZstdFile(obj, 'r') as f: |
| 2298 | d = f.read(1) |
no outgoing calls
no test coverage detected