4 lines
77 B
Python
4 lines
77 B
Python
# test_main.py
|
|
from main import add
|
|
def test_add():
|
|
assert add(2, 3) == 5 |