Conditions for collections. Take for example, `AllNotIn`, the documentation says: > none of the members of attribute value collection are members of "values" Yet the test is: https://github.com/ketgo/py-abac/blob/master/tests/test_policy/test_conditions/test_collection.py#L80 ``` @pytest.mark.parametrize("condition, what, result", [ ... (AllNotIn([2]), [1, 2], True), ``` Of the 2 values for the attribute value collection (`1` and `2`), `2` _is_ a member of "values", so the condition should return `False`.