File size: 250 Bytes
aed86da
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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