(self)
| 208 | self.check_file(testfile, self.nframes, self.frames) |
| 209 | |
| 210 | def test_unseekable_write(self): |
| 211 | with UnseekableIO(TESTFN, 'wb') as testfile: |
| 212 | with self.create_file(testfile) as f: |
| 213 | f.setnframes(self.nframes) |
| 214 | f.writeframes(self.frames) |
| 215 | |
| 216 | self.check_file(TESTFN, self.nframes, self.frames) |
| 217 | |
| 218 | def test_unseekable_incompleted_write(self): |
| 219 | with UnseekableIO(TESTFN, 'wb') as testfile: |
nothing calls this directly
no test coverage detected