Ejemplo n.º 1
0
def test_isList_1():
    assert isList([]) == True
Ejemplo n.º 2
0
def test_isList_6():
    assert isList((1, 2, 3)) == False
Ejemplo n.º 3
0
def test_isList_5():
    assert isList("3") == False
Ejemplo n.º 4
0
def test_isList_4():
    assert isList([[1, 2], "3"]) == True
Ejemplo n.º 5
0
def test_isList_3():
    assert isList([1, 2, 3]) == True
Ejemplo n.º 6
0
def test_isList_2():
    assert isList([1]) == True