def test_take_N_empty_seq(): eq_(list(take_N([], n=2)), [])
def test_take_N_not_multiple_of_n(): list(take_N([1, 2, 3, 4, 5], n=2))