diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2005-12-26 07:49:25 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2005-12-26 07:49:25 +0000 |
commit | a1d00598a3a406e965cd3e07a6ebf95e4c50198b (patch) | |
tree | 069b66cab8bd31be325de284bbb8603595271a11 /scipy/weave/tests/test_inline_tools.py | |
parent | 36e55fb0bfd3f55f2ece8cbf68a7b912df6de9e6 (diff) | |
download | numpy-a1d00598a3a406e965cd3e07a6ebf95e4c50198b.tar.gz |
Renamed scipy.test module to scipy.testing. Clean up testing.
Diffstat (limited to 'scipy/weave/tests/test_inline_tools.py')
-rw-r--r-- | scipy/weave/tests/test_inline_tools.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scipy/weave/tests/test_inline_tools.py b/scipy/weave/tests/test_inline_tools.py index 2d197cd19..4ce7bfa1c 100644 --- a/scipy/weave/tests/test_inline_tools.py +++ b/scipy/weave/tests/test_inline_tools.py @@ -1,7 +1,7 @@ -import unittest -from scipy_base.numerix import * -from scipy_test.testing import * +from scipy.base import * + +from scipy.testing import * set_package_path() from weave import inline_tools restore_path() @@ -9,7 +9,7 @@ set_local_path() from test_scxx import * restore_path() -class test_inline(unittest.TestCase): +class test_inline(ScipyTestCase): """ These are long running tests... I'd like to benchmark these things somehow. @@ -43,4 +43,4 @@ class test_inline(unittest.TestCase): pass if __name__ == "__main__": - ScipyTest('weave.inline_tools').run() + ScipyTest().run() |