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