Exemplo n.º 1
0
def test_store_empty_stack():
    state = State()
    with pytest.raises(exc.StackError):
        state.store()
Exemplo n.º 2
0
def test_store():
    state = State(stack=[5, 80])
    state.store()
    assert state.heap == {5: 80}
Exemplo n.º 3
0
def test_store_only_one_item_in_stack():
    state = State(stack=[5])
    with pytest.raises(exc.StackError):
        state.store()