python/tests/test_phasevoc.py: split tests
authorPaul Brossier <piem@piem.org>
Fri, 22 Mar 2013 17:33:54 +0000 (12:33 -0500)
committerPaul Brossier <piem@piem.org>
Fri, 22 Mar 2013 17:33:54 +0000 (12:33 -0500)
python/tests/test_phasevoc.py

index 5dd97866929cd70db8ff8441f386b663cb7e2263..e317a7d139cf7d596f65b4915faae5ad91afa70c 100755 (executable)
@@ -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])