From: Zac Medico Date: Fri, 4 Feb 2011 06:03:07 +0000 (-0800) Subject: REQUIRED_USE: more display tests X-Git-Tag: v2.1.9.36~12 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6fcd6fa34c7842cd45830ff54d80f92eb2cc25af;p=portage.git REQUIRED_USE: more display tests --- diff --git a/pym/portage/tests/dep/testCheckRequiredUse.py b/pym/portage/tests/dep/testCheckRequiredUse.py index d6a9d0c45..332c5a5df 100644 --- a/pym/portage/tests/dep/testCheckRequiredUse.py +++ b/pym/portage/tests/dep/testCheckRequiredUse.py @@ -180,6 +180,16 @@ class TestCheckRequiredUse(TestCase): "^^ ( ( a b c ) ( b c d ) )", ["a", "b", "c", "d"], "^^ ( ( a b c ) ( b c d ) )" + ), + ( + "^^ ( ( a b c ) ( b c !d ) )", + ["a", "b", "c"], + "^^ ( ( a b c ) ( b c !d ) )" + ), + ( + "^^ ( ( a b c ) ( b c !d ) )", + ["a", "b", "c", "d"], + "" ) ) for required_use, use, expected in test_cases: