First Push

Setup Push
This commit is contained in:
danielwilczak101
2020-09-17 12:28:32 -04:00
commit d7fc75ba3d
16 changed files with 133 additions and 0 deletions

7
test_helloworld.py Normal file
View File

@ -0,0 +1,7 @@
from helloworld import say_hello
def test_helloworld_no_params():
assert say_hello() == "Hello World!"
def test_helloworld_with_param():
assert say_hello("Everyone") == "Hello, Everyone!"