(self)
| 194 | self.check_file(testfile, self.nframes, self.frames) |
| 195 | |
| 196 | def test_unseekable_read(self): |
| 197 | with self.create_file(TESTFN) as f: |
| 198 | f.setnframes(self.nframes) |
| 199 | f.writeframes(self.frames) |
| 200 | |
| 201 | with UnseekableIO(TESTFN, 'rb') as testfile: |
| 202 | self.check_file(testfile, self.nframes, self.frames) |
| 203 | |
| 204 | def test_unseekable_write(self): |
| 205 | with UnseekableIO(TESTFN, 'wb') as testfile: |
nothing calls this directly
no test coverage detected