summaryrefslogtreecommitdiff
path: root/numpy/f2py/lib/tests/test_module_module.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/f2py/lib/tests/test_module_module.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/f2py/lib/tests/test_module_module.py')
-rw-r--r--numpy/f2py/lib/tests/test_module_module.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/f2py/lib/tests/test_module_module.py b/numpy/f2py/lib/tests/test_module_module.py
index d56cb45a6..53348b5d8 100644
--- a/numpy/f2py/lib/tests/test_module_module.py
+++ b/numpy/f2py/lib/tests/test_module_module.py
@@ -51,11 +51,11 @@ m,m2 = compile(fortran_code, modulenames=['test_module_module_ext',
from numpy import *
-class TestM(NumpyTestCase):
+class TestM(TestCase):
- def check_foo_simple(self, level=1):
+ def test_foo_simple(self, level=1):
foo = m.foo
foo()
if __name__ == "__main__":
- NumpyTest().run()
+ nose.run(argv=['', __file__])