summaryrefslogtreecommitdiff
path: root/numpy/testing/info.py
diff options
context:
space:
mode:
authorAlan McIntyre <alan.mcintyre@local>2008-06-17 00:23:20 +0000
committerAlan McIntyre <alan.mcintyre@local>2008-06-17 00:23:20 +0000
commitc331857d8663ecf54bbe88c834755da749e8ab52 (patch)
treef4cc69ec328a5ff4d3b108f3610acb119a196493 /numpy/testing/info.py
parent22ba7886a84dc6a16ca75871f7cd2f10ef8de1f9 (diff)
downloadnumpy-c331857d8663ecf54bbe88c834755da749e8ab52.tar.gz
Switched to use nose to run tests. Added test and bench functions to all modules.
Diffstat (limited to 'numpy/testing/info.py')
-rw-r--r--numpy/testing/info.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/numpy/testing/info.py b/numpy/testing/info.py
deleted file mode 100644
index 8b09d8ed3..000000000
--- a/numpy/testing/info.py
+++ /dev/null
@@ -1,30 +0,0 @@
-"""
-Numpy testing tools
-===================
-
-Numpy-style unit-testing
-------------------------
-
- NumpyTest -- Numpy tests site manager
- NumpyTestCase -- unittest.TestCase with measure method
- IgnoreException -- raise when checking disabled feature, it'll be ignored
- set_package_path -- prepend package build directory to path
- set_local_path -- prepend local directory (to tests files) to path
- restore_path -- restore path after set_package_path
-
-Utility functions
------------------
-
- jiffies -- return 1/100ths of a second that the current process has used
- memusage -- virtual memory size in bytes of the running python [linux]
- rand -- array of random numbers from given shape
- assert_equal -- assert equality
- assert_almost_equal -- assert equality with decimal tolerance
- assert_approx_equal -- assert equality with significant digits tolerance
- assert_array_equal -- assert arrays equality
- assert_array_almost_equal -- assert arrays equality with decimal tolerance
- assert_array_less -- assert arrays less-ordering
-
-"""
-
-global_symbols = ['ScipyTest','NumpyTest']