#main from lib_mod import mult, add if __name__ == '__main__': print mult(5,12) print add(5,12)
def test_mult_3_4(): assert mult(3,4) == 12