diff options
| author | Alan McIntyre <alan.mcintyre@local> | 2008-06-17 00:23:20 +0000 |
|---|---|---|
| committer | Alan McIntyre <alan.mcintyre@local> | 2008-06-17 00:23:20 +0000 |
| commit | c331857d8663ecf54bbe88c834755da749e8ab52 (patch) | |
| tree | f4cc69ec328a5ff4d3b108f3610acb119a196493 /numpy/distutils/tests/gen_ext | |
| parent | 22ba7886a84dc6a16ca75871f7cd2f10ef8de1f9 (diff) | |
| download | numpy-c331857d8663ecf54bbe88c834755da749e8ab52.tar.gz | |
Switched to use nose to run tests. Added test and bench functions to all modules.
Diffstat (limited to 'numpy/distutils/tests/gen_ext')
| -rw-r--r-- | numpy/distutils/tests/gen_ext/tests/test_fib3.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/tests/gen_ext/tests/test_fib3.py b/numpy/distutils/tests/gen_ext/tests/test_fib3.py index b962a12aa..0c1e2d60d 100644 --- a/numpy/distutils/tests/gen_ext/tests/test_fib3.py +++ b/numpy/distutils/tests/gen_ext/tests/test_fib3.py @@ -4,10 +4,10 @@ set_package_path() from gen_ext import fib3 del sys.path[0] -class TestFib3(NumpyTestCase): +class TestFib3(TestCase): - def check_fib(self): + def test_fib(self): assert_array_equal(fib3.fib(6),[0,1,1,2,3,5]) if __name__ == "__main__": - NumpyTest().run() + nose.run(argv=['', __file__]) |
