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