ref: 965ea78a7a4aefa68e54f7c108e635740ed8b0fb
dir: /tests/python/aubiomodule.py/
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()