Current File : /home/inlingua/miniconda3/pkgs/rich-13.9.4-py312h06a4308_0/info/test/tests/test_stack.py
from rich._stack import Stack


def test_stack():
    stack = Stack()
    stack.push("foo")
    stack.push("bar")
    assert stack.top == "bar"
    assert stack.pop() == "bar"
    assert stack.top == "foo"