shithub: aubio

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