Exemplo n.º 1
0
def test_is_hgt_valid_in_true_1():
    hgt = '70in'
    actual = d4part2.is_hgt_valid(hgt)
    assert actual == True
Exemplo n.º 2
0
def test_is_hgt_valid_in_false_2():
    hgt = '77in'
    actual = d4part2.is_hgt_valid(hgt)
    assert actual == False
Exemplo n.º 3
0
def test_is_hgt_valid_cm_false_2():
    hgt = '194cm'
    actual = d4part2.is_hgt_valid(hgt)
    assert actual == False
Exemplo n.º 4
0
def test_is_hgt_valid_cm_true_1():
    hgt = '180cm'
    actual = d4part2.is_hgt_valid(hgt)
    assert actual == True
Exemplo n.º 5
0
def test_is_hgt_valid_missing_false_2():
    hgt = '70'
    actual = d4part2.is_hgt_valid(hgt)
    assert actual == False