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