ref: fa5d8add56f38a464e156e98e0c23e4f2cc4b9c5
dir: /python/tests/test_aubio.py/
#! /usr/bin/env python
from unittest import main
from numpy.testing import TestCase
class aubiomodule_test_case(TestCase):
def test_import(self):
""" try importing aubio """
import aubio
if __name__ == '__main__':
main()