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