Merge branch 'master' into feature/pytest
[aubio.git] / python / tests / test_aubio_cut.py
1 #! /usr/bin/env python
2
3 import aubio.cut
4 from numpy.testing import TestCase
5
6 class aubio_cut(TestCase):
7
8     def setUp(self):
9         self.a_parser = aubio.cut.aubio_cut_parser()
10
11     def test_default_creation(self):
12         assert self.a_parser.parse_args(['-v']).verbose
13
14 if __name__ == '__main__':
15     from unittest import main
16     main()