gitea-gitlab-exporter/tests/test_skeleton.py
2023-10-22 16:21:00 +11:00

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"