(self)
| 254 | cls.sndfilepath = findfile(cls.sndfilename, subdir='audiodata') |
| 255 | |
| 256 | def test_read_params(self): |
| 257 | f = self.f = self.module.open(self.sndfilepath) |
| 258 | #self.assertEqual(f.getfp().name, self.sndfilepath) |
| 259 | self.check_params(f, self.nchannels, self.sampwidth, self.framerate, |
| 260 | self.sndfilenframes, self.comptype, self.compname) |
| 261 | |
| 262 | def test_close(self): |
| 263 | with open(self.sndfilepath, 'rb') as testfile: |
nothing calls this directly
no test coverage detected