def test_single(self): pairs = set([(0, 0)]) assert next_step(pairs) == set()
def test_empty(self): pairs = set() assert next_step(pairs) == set()