From: Paul Brossier Date: Tue, 12 Jul 2016 18:26:30 +0000 (+0200) Subject: python/tests/test_mfcc.py: test for wrong input size (see #63) X-Git-Tag: 0.4.4~291 X-Git-Url: https://git.aubio.org/?p=aubio.git;a=commitdiff_plain;h=c395732636428f00a1ad2df225b2477ab04c2e61 python/tests/test_mfcc.py: test for wrong input size (see #63) --- diff --git a/python/tests/test_mfcc.py b/python/tests/test_mfcc.py index 6e63f332..e7f3b186 100755 --- a/python/tests/test_mfcc.py +++ b/python/tests/test_mfcc.py @@ -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):