import python_skeleton def test_hello_word(capsys): python_skeleton.hello_world() captured = capsys.readouterr() assert captured.out == "Hello World!\n"