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