Beispiel #1
0
def test_light_choice_stop_red():
    assert traffic_light_choice("stopped", "red") == "stop"
Beispiel #2
0
def test_light_choice_stop_yellow():
    assert traffic_light_choice("stopped", "yellow") == "stop"
Beispiel #3
0
def test_light_choice_moving_yellow():
    assert traffic_light_choice("moving", "yellow") == "stop"
Beispiel #4
0
def test_light_choice_moving_green():
    assert traffic_light_choice("moving", "green") == "go"
Beispiel #5
0
def test_light_choice_moving_red():
    assert traffic_light_choice('moving', 'red') == 'stop'
Beispiel #6
0
def test_light_choice_moving_red():
    assert traffic_light_choice("moving", "red") == "stop"
Beispiel #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"
Beispiel #9
0
def test_light_choice_moving_green():
    assert traffic_light_choice('moving', 'green') == 'go'
Beispiel #10
0
def test_light_choice_stop_red():
    assert traffic_light_choice('stop', 'red') == 'stop'
Beispiel #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"
Beispiel #14
0
def test_light_choice_stop_green():
    assert traffic_light_choice("stopped", "green") == "go"
Beispiel #15
0
def test_light_choice_stop_green():
    assert traffic_light_choice('stop', 'green') == 'go'
Beispiel #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"