From: Zac Medico Date: Sun, 15 Feb 2009 05:13:26 +0000 (-0000) Subject: Add a test case for the new case which is detected by isvalidatom(). X-Git-Tag: v2.2_rc24~188 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8ea60f7e3a5043aec5497bbaea312fc1ac30d8f9;p=portage.git Add a test case for the new case which is detected by isvalidatom(). svn path=/main/trunk/; revision=12617 --- diff --git a/pym/portage/tests/dep/test_isvalidatom.py b/pym/portage/tests/dep/test_isvalidatom.py index cd501e90d..1364a92a2 100644 --- a/pym/portage/tests/dep/test_isvalidatom.py +++ b/pym/portage/tests/dep/test_isvalidatom.py @@ -57,6 +57,7 @@ class IsValidAtom(TestCase): ( "null/portage", True ), ( "=null/portage", False ), ( "=null/portage*", False ), + ( "null/portage*:0", False ), ( ">=null/portage-2.1", True ), ( "~null/portage-2.1", True ), ( "=null/portage-2.1*", True ),]