(self)
| 130 | self.assertIsNone(f.getfp()) |
| 131 | |
| 132 | def test_write(self): |
| 133 | f = self.create_file(TESTFN) |
| 134 | f.setnframes(self.nframes) |
| 135 | f.writeframes(self.frames) |
| 136 | f.close() |
| 137 | |
| 138 | self.check_file(TESTFN, self.nframes, self.frames) |
| 139 | |
| 140 | def test_write_bytearray(self): |
| 141 | f = self.create_file(TESTFN) |
nothing calls this directly
no test coverage detected