(self, testfile)
| 53 | class AudioWriteTests(AudioTests): |
| 54 | |
| 55 | def create_file(self, testfile): |
| 56 | f = self.fout = self.module.open(testfile, 'wb') |
| 57 | f.setnchannels(self.nchannels) |
| 58 | f.setsampwidth(self.sampwidth) |
| 59 | f.setframerate(self.framerate) |
| 60 | f.setcomptype(self.comptype, self.compname) |
| 61 | return f |
| 62 | |
| 63 | def check_file(self, testfile, nframes, frames): |
| 64 | with self.module.open(testfile, 'rb') as f: |
no test coverage detected