(self)
| 124 | self.assertIsNone(f.getfp()) |
| 125 | |
| 126 | def test_write(self): |
| 127 | f = self.create_file(TESTFN) |
| 128 | f.setnframes(self.nframes) |
| 129 | f.writeframes(self.frames) |
| 130 | f.close() |
| 131 | |
| 132 | self.check_file(TESTFN, self.nframes, self.frames) |
| 133 | |
| 134 | def test_write_bytearray(self): |
| 135 | f = self.create_file(TESTFN) |
nothing calls this directly
no test coverage detected