(self)
| 148 | self.check_file(TESTFN, self.nframes, self.frames) |
| 149 | |
| 150 | def test_write_memoryview(self): |
| 151 | f = self.create_file(TESTFN) |
| 152 | f.setnframes(self.nframes) |
| 153 | f.writeframes(memoryview(self.frames)) |
| 154 | f.close() |
| 155 | |
| 156 | self.check_file(TESTFN, self.nframes, self.frames) |
| 157 | |
| 158 | def test_incompleted_write(self): |
| 159 | with open(TESTFN, 'wb') as testfile: |
nothing calls this directly
no test coverage detected