ref: 86ad5462e927ddf5d71fa7f630b8584f19dbd54a
parent: 01e7be0487639b2f21d6f736642dc0fb9fb2ce40
author: Paul Brossier <[email protected]>
date: Fri Mar 22 08:33:54 EDT 2013
python/tests/test_phasevoc.py: split tests
--- a/python/tests/test_phasevoc.py
+++ b/python/tests/test_phasevoc.py
@@ -7,9 +7,11 @@
class aubio_pvoc_test_case(TestCase):
- def test_members(self):
+ def test_members_automatic_sizes_default(self):
f = pvoc()
assert_equal ([f.win_s, f.hop_s], [1024, 512])
+
+ def test_members_automatic_sizes_not_null(self):
f = pvoc(2048, 128)
assert_equal ([f.win_s, f.hop_s], [2048, 128])