(self)
| 154 | self.check_file(TESTFN, self.nframes, self.frames) |
| 155 | |
| 156 | def test_write_memoryview(self): |
| 157 | f = self.create_file(TESTFN) |
| 158 | f.setnframes(self.nframes) |
| 159 | f.writeframes(memoryview(self.frames)) |
| 160 | f.close() |
| 161 | |
| 162 | self.check_file(TESTFN, self.nframes, self.frames) |
| 163 | |
| 164 | def test_incompleted_write(self): |
| 165 | with open(TESTFN, 'wb') as testfile: |
nothing calls this directly
no test coverage detected