def test_cycler(self):
items = 1, 2, 3
c = Cycler(*items)
for item in items + items:
assert c.current == item
assert next(c) == item
next(c)
assert c.current == 2
c.reset()
assert c.current == 1
api.py 文件源码
python
阅读 21
收藏 0
点赞 0
评论 0
评论列表
文章目录