🚧 Update skeleton to new project

This commit is contained in:
Neill Cox 2023-10-22 20:43:24 +11:00
parent b2822e4541
commit cebcde61aa
4 changed files with 34 additions and 57 deletions

7
tests/test_exporter.py Normal file
View file

@ -0,0 +1,7 @@
import gitea_gitlab_exporter
def test_hello_word(capsys):
gitea_gitlab_exporter.hello_world()
captured = capsys.readouterr()
assert captured.out == "Hello World!\n"