コード例 #1
0
ファイル: tests.py プロジェクト: Ceasar/collections2
def test_popleft():
    dll = DoubleLinkedList()
    dll.append(1)
    assert dll.popleft() == 1