Ejemplo n.º 1
0
def test_mathtools_factors_05():
    t = mathtools.factors(6)
    assert t == [1, 2, 3]
Ejemplo n.º 2
0
def test_mathtools_factors_06():
    t = mathtools.factors(12)
    assert t == [1, 2, 2, 3]
Ejemplo n.º 3
0
def test_mathtools_factors_03():
    t = mathtools.factors(3)
    assert t == [1, 3]
Ejemplo n.º 4
0
def test_mathtools_factors_04():
    t = mathtools.factors(4)
    assert t == [1, 2, 2]
Ejemplo n.º 5
0
def test_mathtools_factors_01():
    with pytest.raises(TypeError):
        mathtools.factors(7.5)
    with pytest.raises(ValueError):
        mathtools.factors(0)
Ejemplo n.º 6
0
def test_mathtools_factors_02():
    t = mathtools.factors(2)
    assert t == [1, 2]
Ejemplo n.º 7
0
def test_mathtools_factors_02( ):
    t = mathtools.factors(2)
    assert t == [1, 2]
Ejemplo n.º 8
0
def test_mathtools_factors_06( ):
    t = mathtools.factors(12)
    assert t == [1, 2, 2, 3]
Ejemplo n.º 9
0
def test_mathtools_factors_05( ):
    t = mathtools.factors(6)
    assert t == [1, 2, 3]
Ejemplo n.º 10
0
def test_mathtools_factors_04( ):
    t = mathtools.factors(4)
    assert t == [1, 2, 2]
Ejemplo n.º 11
0
def test_mathtools_factors_03( ):
    t = mathtools.factors(3)
    assert t == [1, 3]