def test_simple_add(): assert simple_math.simple_add(1, 3) == 4
def test_add(): assert simple_math.simple_add(10, 10) == 20
def test_add(): assert sm.simple_add(2, 1) == 3
def test_simple_add(): assert sm.simple_add(1, 1) == 2
def test_simple_math_simple_add(): assert simple_math.simple_add(5, 5) == 10