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"