From 86ad5462e927ddf5d71fa7f630b8584f19dbd54a Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 22 Mar 2013 12:33:54 -0500 Subject: [PATCH] python/tests/test_phasevoc.py: split tests --- python/tests/test_phasevoc.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/tests/test_phasevoc.py b/python/tests/test_phasevoc.py index 5dd97866..e317a7d1 100755 --- a/python/tests/test_phasevoc.py +++ b/python/tests/test_phasevoc.py @@ -7,9 +7,11 @@ from numpy import array, shape 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]) -- 2.26.2