diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-09-14 18:55:03 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-09-14 18:55:03 +0000 |
commit | 951cdad1a9b0a15b673bf56aecc1fef5066061f3 (patch) | |
tree | f307f0f2ebf404526fcc671958e8ea836b53baf9 /base/tests/test_limits.py | |
parent | c261078e9c2d8fd958bf8b3758cdd07add5fc2e3 (diff) | |
download | numpy-951cdad1a9b0a15b673bf56aecc1fef5066061f3.tar.gz |
renamed directories
Diffstat (limited to 'base/tests/test_limits.py')
-rw-r--r-- | base/tests/test_limits.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/base/tests/test_limits.py b/base/tests/test_limits.py new file mode 100644 index 000000000..a8a184fc5 --- /dev/null +++ b/base/tests/test_limits.py @@ -0,0 +1,29 @@ +""" Test functions for limits module. + + Currently empty -- not sure how to test these values + and routines as they are machine dependent. Suggestions? +""" + +import unittest + +import sys +from scipy_test.testing import * +set_package_path() +import scipy_base;reload(scipy_base) +from scipy_base import * +del sys.path[0] + +################################################## +### Test for sum + +class test_float(unittest.TestCase): + def check_nothing(self): + pass + +class test_double(unittest.TestCase): + def check_nothing(self): + pass + +if __name__ == "__main__": + ScipyTest('scipy_base.limits').run() + |