Ejemplo n.º 1
0
def test_hasMultiplesOf_5():
    assert hasMultiplesOf(5, []) == False
Ejemplo n.º 2
0
def test_hasMultiplesOf_4():
    assert hasMultiplesOf(1.1, [1.1, 2.2, 4.4]) == True
Ejemplo n.º 3
0
def test_hasMultiplesOf_2():
    assert hasMultiplesOf("3", [-3, 0, 3, 6]) == False
Ejemplo n.º 4
0
def test_hasMultiplesOf_3():
    assert hasMultiplesOf(3, (-3, 0, 3, 6)) == False
Ejemplo n.º 5
0
def test_hasMultiplesOf_1():
    assert hasMultiplesOf(3, [-3, 0, 3, 6]) == True