From 2751871a9f691cbc1bcf4d983aadc6d166cb5a96 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 10 Jan 2007 12:50:49 +0000 Subject: Make the tests pass. svn path=/main/trunk/; revision=5523 --- tests/test_atoms.py | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) (limited to 'tests') diff --git a/tests/test_atoms.py b/tests/test_atoms.py index 499920f21..119b1fb3c 100644 --- a/tests/test_atoms.py +++ b/tests/test_atoms.py @@ -21,23 +21,15 @@ class AtomCmpEqualGlob(TestCase): # ("=sys-fs/udev_cvs*","sys-fs/udev_cvs_pre4" ) ] for test in tests: - try: - self.failIf( len(match_from_list( test[0], test[1] )) < 1, - msg="%s should match %s!" % (test[0], test[1]) ) - except TypeError: - print "%s should match %s!" % (test[0], test[1]) - raise + self.failIf( len(match_from_list( test[0], [test[1]] )) != 1, + msg="%s should match %s!" % (test[0], test[1]) ) def testEqualGlobFail(self): - tests = [ ("=sys-apps/portage*", "sys-apps/portage-2.1" ), - ("=sys-apps/portage-*", "sys-apps/portage-2.1" ) ] + tests = [ ("=sys-apps/portage-2*", "sys-apps/portage-2.1" ), + ("=sys-apps/portage-2.1*", "sys-apps/portage-2.1.2" ) ] for test in tests: - try: - self.failIf( len( match_from_list( test[0], test[1] ) ), - msg="%s should match %s!" % (test[0], test[1]) ) - except TypeError: - #TypeError means it died parsing, this is OK - pass + self.failIf( len( match_from_list( test[0], [test[1]] ) ) != 1, + msg="%s should match %s!" % (test[0], test[1]) ) class VerCmpTestCase(TestCase): """ A simple testCase for portage_versions.vercmp() -- cgit v1.2.3-1-g7c22