Ejemplo n.º 1
0
def test_empty_false():
    # pylint: disable=missing-docstring
    slst = SList([1, 2, 3])
    exp = False
    res = slst.empty()
    assert res == exp
Ejemplo n.º 2
0
def test_empty_true():
    # pylint: disable=missing-docstring
    slst = SList()
    exp = True
    res = slst.empty()
    assert res == exp