diff options
Diffstat (limited to 'numpy/fft/tests/test_fftpack.py')
-rw-r--r-- | numpy/fft/tests/test_fftpack.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/numpy/fft/tests/test_fftpack.py b/numpy/fft/tests/test_fftpack.py new file mode 100644 index 000000000..0e38fb3ea --- /dev/null +++ b/numpy/fft/tests/test_fftpack.py @@ -0,0 +1,12 @@ +import sys +from numpy.testing import * +set_package_path() +from numpy.fft import * +restore_path() + +class test_fftshift(NumpyTestCase): + def check_fft_n(self): + self.failUnlessRaises(ValueError,fft,[1,2,3],0) + +if __name__ == "__main__": + NumpyTest().run() |