shithub: aubio

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