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