shithub: aubio

ref: 04ceeab0124ab3e08530e0ebbf93179c3ba7d31d
dir: /tests/python/aubiomodule.py/

View raw version
import unittest

class aubiomodule_test_case(unittest.TestCase):

  def test_aubio(self):
    """ try importing aubio module """
    import aubio 

  def test_aubiowrapper(self):
    """ try importing aubio.aubiowrapper module """
    from aubio import aubiowrapper 
 
if __name__ == '__main__':
  unittest.main()