8 lines
130 B
Python
8 lines
130 B
Python
def test_always_true():
|
|
assert True
|
|
|
|
|
|
def test_something_in_src():
|
|
from foo import dummy
|
|
|
|
assert dummy() == (1, 1, 1)
|