"""
All of the values in collection conditions
"""
from marshmallow import post_load
from .base import CollectionCondition, CollectionConditionSchema
[docs]class AllIn(CollectionCondition):
"""
Condition for all values of `what` in `values`
"""
def _is_satisfied(self, what) -> bool:
return set(what).issubset(self.values)
[docs]class AllInSchema(CollectionConditionSchema):
"""
JSON schema for all in collection condition
"""
[docs] @post_load
def post_load(self, data, **_): # pylint: disable=missing-docstring,no-self-use
return AllIn(**data)