diff options
-rw-r--r-- | pym/portage/tests/dep/test_use_reduce.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pym/portage/tests/dep/test_use_reduce.py b/pym/portage/tests/dep/test_use_reduce.py index 026f194e2..44f9fd710 100644 --- a/pym/portage/tests/dep/test_use_reduce.py +++ b/pym/portage/tests/dep/test_use_reduce.py @@ -317,6 +317,12 @@ class UseReduce(TestCase): "A || ( B C )", opconvert = True, expected_result = ['A', ['||', 'B', 'C']]), + # ['A', ['||', 'B', '||', 'C', 'D', 'E'], 'G'] != ['A', ['||', 'B', 'C', 'D', 'E'], 'G'] + #UseReduceTestCase( + # "A foo? ( || ( B || ( bar? ( || ( C D E ) ) !bar? ( F ) ) ) ) G", + # uselist = ["foo", "bar"], + # opconvert = True, + # expected_result = ['A', ['||', 'B', 'C', 'D', 'E'], 'G']), UseReduceTestCase( "|| ( A )", |