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