source: tests/python/aubiomodule.py @ f1dca0e

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

move python/tests to tests/python, examples/tests to tests/src, add .bzrignore

  • 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.