Changeset 283bb90 for python/tests


Ignore:
Timestamp:
May 14, 2016, 5:34:15 AM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
2675227
Parents:
b6b65cb
Message:

python/tests/test_specdesc.py: skip wrong name test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/tests/test_specdesc.py

    rb6b65cb r283bb90  
    241241    def test_unknown(self):
    242242        # FIXME should fail?
    243         o = specdesc("unknown", 512)
     243        with self.assertRaises(ValueError):
     244            o = specdesc("unknown", 512)
     245            self.skipTest('todo: new_specdesc should fail on wrong method')
    244246
    245247if __name__ == '__main__':
Note: See TracChangeset for help on using the changeset viewer.