persistent-docker / tests /athai /test_hello.py
Anthony Truchet
feat: add quality tooling around Poetry
aed86da
Raw
History Blame Contribute Delete
250 Bytes
from athai import hello
def test_hello_default():
assert hello.build_greetings() == "Hello, World!"
def test_hello_name():
assert hello.build_greetings("Toto") == "Nice to meet you, Toto!"
# Given / Arrange
# When / Act
# Then / Assert