Changeset 0b6d23d for python/tests/test_aubio.py
- Timestamp:
- May 16, 2016, 5:08:18 AM (9 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- a6f9ebf
- Parents:
- 58a5fb9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_aubio.py
r58a5fb9 r0b6d23d 1 1 #! /usr/bin/env python 2 2 3 from numpy.testing import TestCase, run_module_suite 3 from unittest import main 4 from numpy.testing import TestCase 4 5 5 6 class aubiomodule_test_case(TestCase): 6 7 7 def test_import(self):8 """ try importing aubio """9 import aubio8 def test_import(self): 9 """ try importing aubio """ 10 import aubio 10 11 11 12 if __name__ == '__main__': 12 from unittest import main 13 main() 13 main() 14 14
Note: See TracChangeset
for help on using the changeset viewer.