shithub: aubio

ref: 88d3d310cdd36c65b618a1bdc84416c2b72a0ca2
dir: /python/tests/test_aubio_cut.py/

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

import aubio.cut
from nose2 import main
from numpy.testing import TestCase

class aubio_cut(TestCase):

    def setUp(self):
        self.a_parser = aubio.cut.aubio_cut_parser()

    def test_default_creation(self):
        assert self.a_parser.parse_args(['-v']).verbose

if __name__ == '__main__':
    main()