🎉 Initial commit

This commit is contained in:
Neill Cox 2023-10-22 16:21:00 +11:00
commit b2822e4541
10 changed files with 1046 additions and 0 deletions

7
tests/test_skeleton.py Normal file
View file

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