summaryrefslogtreecommitdiffstats
path: root/tests/test_util.py
diff options
context:
space:
mode:
authorAlec Warner <antarus@gentoo.org>2007-01-10 12:30:05 +0000
committerAlec Warner <antarus@gentoo.org>2007-01-10 12:30:05 +0000
commit412a1a1278ec55630d9fe776e4ea7c1edfaceead (patch)
tree13ad92cfee630f091d55fef01bf58839ee530296 /tests/test_util.py
parent6959744608eb2f2bdb73847108328b3230e9ed8d (diff)
downloadportage-412a1a1278ec55630d9fe776e4ea7c1edfaceead.tar.gz
portage-412a1a1278ec55630d9fe776e4ea7c1edfaceead.tar.bz2
portage-412a1a1278ec55630d9fe776e4ea7c1edfaceead.zip
rework test import code, rename test_vercmp to be more generic, add tests for =* glob matches
svn path=/main/trunk/; revision=5522
Diffstat (limited to 'tests/test_util.py')
-rw-r--r--tests/test_util.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_util.py b/tests/test_util.py
index 59d82b9ba..e16da6c1d 100644
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -37,6 +37,3 @@ class UtilTestCase(TestCase):
good = "/foo/bar/baz"
self.failUnless(normalize_path(path) == good, msg="NormalizePath(%s) failed to produce %s" % (path, good))
-def suite():
- return TestLoader().loadTestsFromTestCase(UtilTestCase)
-