def test_simple_mult(): assert simple_math.simple_mult(7, 6) == 42
def test_simple_mult(): assert simple_math.simple_mult(3, 5) == 15
def test_mult(): assert simple_math.simple_mult(2, 2) == 4
def test_simple_mult(): assert simple_math.simple_mult(1, 2) == 2
def test_simple_mult(): assert simple_math.simple_mult(2, 3) == 6
def test_simple_mult(): assert sm.simple_mult(1, 1) == 1
def test_mult(): assert sm.simple_mult(3, 4) == 12
def test_simple_mult(): assert sm.simple_mult(3, 3) == 9
def test_simple_math_simple_mult(): assert simple_math.simple_mult(5, 5) == 25