aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-02-04 13:07:52 -0800
committerZac Medico <zmedico@gentoo.org>2011-02-04 13:07:52 -0800
commit3791c8aa4cb242aa2b507b6bac368925aad067b1 (patch)
treef842cb41f31765ebf4c0e68e0d98a37692d1709a /pym/portage/tests
parentdepgraph: make downgrades trigger complete graph (diff)
downloadportage-3791c8aa4cb242aa2b507b6bac368925aad067b1.tar.gz
portage-3791c8aa4cb242aa2b507b6bac368925aad067b1.tar.bz2
portage-3791c8aa4cb242aa2b507b6bac368925aad067b1.zip
REQUIRED_USE: fix parens display and test more
Diffstat (limited to 'pym/portage/tests')
-rw-r--r--pym/portage/tests/dep/testCheckRequiredUse.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/pym/portage/tests/dep/testCheckRequiredUse.py b/pym/portage/tests/dep/testCheckRequiredUse.py
index 332c5a5df..c5a8f5304 100644
--- a/pym/portage/tests/dep/testCheckRequiredUse.py
+++ b/pym/portage/tests/dep/testCheckRequiredUse.py
@@ -190,6 +190,11 @@ class TestCheckRequiredUse(TestCase):
"^^ ( ( a b c ) ( b c !d ) )",
["a", "b", "c", "d"],
""
+ ),
+ (
+ "|| ( ( ( ( a ) ) ( ( ( b c ) ) ) ) )",
+ [""],
+ "a b c"
)
)
for required_use, use, expected in test_cases: