shithub: aubio

ref: ddf04fd596b24293e7daeabe8957753b7643ae2b
dir: /python/tests/test_aubio.py/

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

from numpy.testing import TestCase, run_module_suite

class aubiomodule_test_case(TestCase):

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

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