From: Paul Brossier Date: Fri, 22 Mar 2013 17:33:54 +0000 (-0500) Subject: python/tests/test_phasevoc.py: split tests X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=86ad5462e927ddf5d71fa7f630b8584f19dbd54a;p=aubio.git python/tests/test_phasevoc.py: split tests --- 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])