Ejemplo n.º 1
0
def test_light_choice_stop_red():
    assert traffic_light_choice("stopped", "red") == "stop"
Ejemplo n.º 2
0
def test_light_choice_stop_yellow():
    assert traffic_light_choice("stopped", "yellow") == "stop"
Ejemplo n.º 3
0
def test_light_choice_moving_yellow():
    assert traffic_light_choice("moving", "yellow") == "stop"
Ejemplo n.º 4
0
def test_light_choice_moving_green():
    assert traffic_light_choice("moving", "green") == "go"
Ejemplo n.º 5
0
def test_light_choice_moving_red():
    assert traffic_light_choice('moving', 'red') == 'stop'
Ejemplo n.º 6
0
def test_light_choice_moving_red():
    assert traffic_light_choice("moving", "red") == "stop"
Ejemplo n.º 7
0
def test_light_choice_stop_yellow():
    assert traffic_light_choice('stop', 'yellow') == 'stop'
def test_light_choice_stopped_yellow():
    assert operations.traffic_light_choice("stopped", "yellow") == "stop"
Ejemplo n.º 9
0
def test_light_choice_moving_green():
    assert traffic_light_choice('moving', 'green') == 'go'
Ejemplo n.º 10
0
def test_light_choice_stop_red():
    assert traffic_light_choice('stop', 'red') == 'stop'
Ejemplo n.º 11
0
def test_light_choice_moving_yellow():
    assert traffic_light_choice('moving', 'yellow') == 'stop'
def test_multiple_at_once():  # This method is not advised
    assert operations.traffic_light_choice("stopped", "yellow") == "stop"
    assert operations.traffic_light_choice("stopped", "green") == "go"
    assert operations.traffic_light_choice("stopped", "green") == "break me"
def test_light_choice_stopped_green():
    assert operations.traffic_light_choice("stopped", "green") == "go"
Ejemplo n.º 14
0
def test_light_choice_stop_green():
    assert traffic_light_choice("stopped", "green") == "go"
Ejemplo n.º 15
0
def test_light_choice_stop_green():
    assert traffic_light_choice('stop', 'green') == 'go'
Ejemplo n.º 16
0
def test_light_choice():
    assert traffic_light_choice("moving", "red") == "stop"
    assert traffic_light_choice("moving", "yellow") == "go"
    assert traffic_light_choice("moving", "yellow") == "stop"
def test_light_choice_stopped_red():
    assert operations.traffic_light_choice("stopped", "red") == "stop"