7 lines
167 B
Python
7 lines
167 B
Python
import python_skeleton
|
|
|
|
|
|
def test_hello_word(capsys):
|
|
python_skeleton.hello_world()
|
|
captured = capsys.readouterr()
|
|
assert captured.out == "Hello World!\n"
|