Files
curriculum/1.solar-system/2.first-light/04.the-script/testing/test_solution.py

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"