def test_isdisjoint_negative(self): s = SortedFrozenSet({1, 2, 3}) t = [3, 4, 5] assert not s.isdisjoint(t)
def test_isdisjoint_positive(self): s = SortedFrozenSet({1, 2, 3}) t = [4, 5, 6] assert s.isdisjoint(t)