(self)
| 200 | self.check_file(testfile, self.nframes, self.frames) |
| 201 | |
| 202 | def test_unseekable_read(self): |
| 203 | with self.create_file(TESTFN) as f: |
| 204 | f.setnframes(self.nframes) |
| 205 | f.writeframes(self.frames) |
| 206 | |
| 207 | with UnseekableIO(TESTFN, 'rb') as testfile: |
| 208 | self.check_file(testfile, self.nframes, self.frames) |
| 209 | |
| 210 | def test_unseekable_write(self): |
| 211 | with UnseekableIO(TESTFN, 'wb') as testfile: |
nothing calls this directly
no test coverage detected