shithub: aubio

ref: 88b301a769725e9237f20af6b07e1ab1e0c82397
dir: /python/tests/test_aubio.py/

View raw version
#! /usr/bin/env python

from numpy.testing import TestCase

class aubiomodule_test_case(TestCase):

    def test_import(self):
        """ try importing aubio """
        import aubio

    def test_version(self):
        """ test aubio.version """
        import aubio
        self.assertEqual('0', aubio.version[0])

if __name__ == '__main__':
    from unittest import main
    main()