shithub: aubio

ref: a47cd35a0f2c78a48369f69a59f24fcc7fd81e4b
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()