10 lines
194 B
Python
10 lines
194 B
Python
from solution import hello, goodbye
|
|
|
|
|
|
def test_hello_returns_correct_string():
|
|
assert hello() == "From the script"
|
|
|
|
|
|
def test_goodbye_returns_correct_string():
|
|
assert goodbye() == "Out"
|