source:
python/tests/test_aubio.py
@
331249b
Last change on this file since 331249b was 26adcfb, checked in by , 12 years ago | |
---|---|
|
|
File size: 259 bytes |
Rev | Line | |
---|---|---|
[75e715f] | 1 | #! /usr/bin/env python |
[1ebf8770] | 2 | |
[146280a] | 3 | from numpy.testing import TestCase, run_module_suite |
[ae6e15c] | 4 | |
[146280a] | 5 | class aubiomodule_test_case(TestCase): |
[ae6e15c] | 6 | |
[4c01c0f] | 7 | def test_import(self): |
[ae6e15c] | 8 | """ try importing aubio """ |
[4c01c0f] | 9 | import aubio |
[146280a] | 10 | |
[ae6e15c] | 11 | if __name__ == '__main__': |
[146280a] | 12 | from unittest import main |
13 | main() | |
14 |
Note: See TracBrowser
for help on using the repository browser.