summaryrefslogtreecommitdiff
path: root/numpy/fft/tests/test_fftpack.py
blob: 0e38fb3eab9504c55fccd281f105d8902007b0a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
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()