6 lines
64 B
Python
6 lines
64 B
Python
from app import add
|
|
|
|
def test_add():
|
|
assert add(2, 3) == 5
|
|
|
from app import add
|
|
|
|
def test_add():
|
|
assert add(2, 3) == 5
|
|
|