Ejemplo n.º 1
0
def test_i():
    assert div(2, 2) == 1
Ejemplo n.º 2
0
def test_div_stringparam(num1, num2, expection):
    assert div(num1, num2) == expection
Ejemplo n.º 3
0
def test_div_zeroparam(num1, num2, expection):
    with pytest.raises(eval(expection)):
        div(num1, num2)
Ejemplo n.º 4
0
def test_div_floatparam(num1, num2, expection):
    assert div(num1, num2) == expection