8 lines
95 B
Python
8 lines
95 B
Python
# test_math.py
|
|
def add(a, b):
|
|
return a + b
|
|
|
|
def test_add():
|
|
assert add(2, 3) == 5
|
|
|