python/tests/test_mfcc.py: test for wrong input size (see #63)
[aubio.git] / python / tests / test_mfcc.py
index 6e63f33..e7f3b18 100755 (executable)
@@ -56,6 +56,11 @@ class aubio_mfcc_wrong_params(TestCase):
         with self.assertRaises(ValueError):
             mfcc(samplerate = -1)
 
+    def test_wrong_input_size(self):
+        m = mfcc(buf_size = 1024)
+        with self.assertRaises(ValueError):
+            m(cvec(512))
+
 class aubio_mfcc_compute(TestCase):
 
     def test_members(self):