def test_issuperset_negative(self): s = SortedFrozenSet({1, 2}) t = [1, 2, 3] assert not s.issuperset(t)
def test_issuperset_positive(self): s = SortedFrozenSet({1, 2, 3}) t = [1, 2, 3] assert s.issuperset(t)