Files
EasyGA/test_helloworld.py
danielwilczak101 d7fc75ba3d First Push
Setup Push
2020-09-17 12:28:32 -04:00

8 lines
198 B
Python

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!"