summaryrefslogtreecommitdiff
path: root/numpy/distutils/tests/test_misc_util.py
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2007-10-02 07:54:11 +0000
committerStefan van der Walt <stefan@sun.ac.za>2007-10-02 07:54:11 +0000
commit610438f1fb2436cec44b9ddd451daa67d846cdd0 (patch)
tree05dd27f00f161ee3a54b1dcf5f3b7f161cf8a68c /numpy/distutils/tests/test_misc_util.py
parentb4bb63c29c8bb81bcc2d2070f1bd3b81253acd85 (diff)
downloadnumpy-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.py6
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__),'..'))