source: python/test/aubiomodule.py @ 229ea56

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 229ea56 was 229ea56, checked in by Paul Brossier <piem@piem.org>, 17 years ago

python/test: added simple python unit test model

  • Property mode set to 100644
File size: 314 bytes
Line 
1import unittest
2
3class aubiomodule_test_case(unittest.TestCase):
4
5  def test_aubio(self):
6    """ try importing aubio module """
7    import aubio 
8
9  def test_aubiowrapper(self):
10    """ try importing aubio.aubiowrapper module """
11    from aubio import aubiowrapper
12 
13if __name__ == '__main__':
14  unittest.main()
Note: See TracBrowser for help on using the repository browser.