Ejemplo n.º 1
0
def test_reacting_not_matching_equal():
    assert day5.reacting('B', 'B') == False
Ejemplo n.º 2
0
def test_reacting_higher_lower():
    assert day5.reacting('a', 'A') == True
Ejemplo n.º 3
0
def test_reacting_not_matching_higher():
    assert day5.reacting('A', 'b') == False