ref: 230101d2de1f7e3c993dc16e3ac57d3cbacdd07c
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
def test_version(self):
""" test aubio.version """
import aubio
self.assertEqual('0', aubio.version[0])
if __name__ == '__main__':
main()