source: python/tests/test_musicutils.py @ 913a7f1

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 913a7f1 was 913a7f1, checked in by Paul Brossier <piem@piem.org>, 9 years ago

python/ext/py-musicutils.{c,h}: first .c and test

  • Property mode set to 100755
File size: 258 bytes
Line 
1#! /usr/bin/env python
2
3from numpy.testing import TestCase
4from aubio import window
5
6class aubio_window(TestCase):
7
8    def test_accept_name_and_size(self):
9        window("default", 1024)
10
11if __name__ == '__main__':
12    from unittest import main
13    main()
Note: See TracBrowser for help on using the repository browser.