diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2007-10-02 07:54:11 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2007-10-02 07:54:11 +0000 |
commit | 610438f1fb2436cec44b9ddd451daa67d846cdd0 (patch) | |
tree | 05dd27f00f161ee3a54b1dcf5f3b7f161cf8a68c /numpy/distutils/tests/test_misc_util.py | |
parent | b4bb63c29c8bb81bcc2d2070f1bd3b81253acd85 (diff) | |
download | numpy-610438f1fb2436cec44b9ddd451daa67d846cdd0.tar.gz |
Rename test classes to CapWords.
Diffstat (limited to 'numpy/distutils/tests/test_misc_util.py')
-rw-r--r-- | numpy/distutils/tests/test_misc_util.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/tests/test_misc_util.py b/numpy/distutils/tests/test_misc_util.py index b75eb8cf2..4d2404092 100644 --- a/numpy/distutils/tests/test_misc_util.py +++ b/numpy/distutils/tests/test_misc_util.py @@ -8,7 +8,7 @@ from os.path import join, sep ajoin = lambda *paths: join(*((sep,)+paths)) -class test_appendpath(NumpyTestCase): +class TestAppendpath(NumpyTestCase): def check_1(self): assert_equal(appendpath('prefix','name'),join('prefix','name')) @@ -32,7 +32,7 @@ class test_appendpath(NumpyTestCase): assert_equal(appendpath('/prefix/sub/sub2','/prefix/sub/sup/name'), ajoin('prefix','sub','sub2','sup','name')) -class test_minrelpath(NumpyTestCase): +class TestMinrelpath(NumpyTestCase): def check_1(self): import os @@ -47,7 +47,7 @@ class test_minrelpath(NumpyTestCase): assert_equal(minrelpath(n('.././..')),n('../..')) assert_equal(minrelpath(n('aa/bb/.././../dd')),n('dd')) -class test_gpaths(NumpyTestCase): +class TestGpaths(NumpyTestCase): def check_gpaths(self): local_path = minrelpath(os.path.join(os.path.dirname(__file__),'..')) |