Ejemplo n.º 1
0
 def test_str(self):
     assert list(pairwise('abcdef')) == [('a', 'b'), ('c', 'd'), ('e', 'f')]
Ejemplo n.º 2
0
 def test_int(self):
     assert list(pairwise([1, 2, 3, 4, 5, 6])) == [(1, 2), (3, 4), (5, 6)]
Ejemplo n.º 3
0
 def test_empty(self):
     assert list(pairwise([])) == []