pydu/tests/test_list.py

6 lines
101 B
Python
Raw Normal View History

2017-11-21 05:10:44 +00:00
from pydu.list import uniq
def test_uniq():
assert uniq([1, 4, 0, 2, 0, 3]) == [1, 4, 0, 2, 3]