From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PlEvr-00057E-S8 for garchives@archives.gentoo.org; Fri, 04 Feb 2011 06:14:12 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A8C3E0887; Fri, 4 Feb 2011 06:14:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 66C85E0887 for ; Fri, 4 Feb 2011 06:14:04 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EBE171B40E6 for ; Fri, 4 Feb 2011 06:14:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 34D2B80073 for ; Fri, 4 Feb 2011 06:07:51 +0000 (UTC) To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Content-type: text/plain; charset=UTF-8 Message-ID: <6fcd6fa34c7842cd45830ff54d80f92eb2cc25af.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:2.1.9 commit in: pym/portage/tests/dep/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/tests/dep/testCheckRequiredUse.py X-VCS-Directories: pym/portage/tests/dep/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 6fcd6fa34c7842cd45830ff54d80f92eb2cc25af Date: Fri, 4 Feb 2011 06:07:51 +0000 (UTC) From: zmedico@gentoo.org Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: a0b7e20aede57e3809ee7c02a777fe9b commit: 6fcd6fa34c7842cd45830ff54d80f92eb2cc25af Author: Zac Medico gentoo org> AuthorDate: Fri Feb 4 06:03:07 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Feb 4 06:07:39 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D6fcd6fa34c7842cd45830ff54d80f92eb2cc25af REQUIRED_USE: more display tests --- pym/portage/tests/dep/testCheckRequiredUse.py | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/pym/portage/tests/dep/testCheckRequiredUse.py b/pym/portage/= tests/dep/testCheckRequiredUse.py index d6a9d0c..332c5a5 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: