Ejemplo n.º 1
0
def test_square_by_parametrize(number):
    assert square(number) == number**2
Ejemplo n.º 2
0
def test_square_with_positive_input():
    assert square(3) == 9
Ejemplo n.º 3
0
def test_square_with_a_string():
    with pytest.raises(TypeError):
        assert square("s")
Ejemplo n.º 4
0
def test_square_with_zero():
    assert square(0) == 0
Ejemplo n.º 5
0
def test_square_with_negative_input():
    assert square(-4) == 16
Ejemplo n.º 6
0
def test_square():
    assert(sample.square(2) == 4)