Beispiel #1
0
def test_squirrel_play_60_false():
    assert squirrel_play(60, False)
Beispiel #2
0
def test_squirrel_play_95_false():
    assert not squirrel_play(95, False)
Beispiel #3
0
def test_squirrel_play_59_false():
    assert not squirrel_play(59, False)
Beispiel #4
0
def test_squirrel_play_59_true():
    assert not squirrel_play(59, True)
Beispiel #5
0
def test_squirrel_play_100_true():
    assert squirrel_play(100, True)
Beispiel #6
0
def test_squirrel_play_105_true():
    assert not squirrel_play(105, True)
Beispiel #7
0
def test_squirrel_play_70_false():
    assert squirrel_play(70, False)
Beispiel #8
0
def test_squirrel_play_100_false():
    assert not squirrel_play(100, False)
Beispiel #9
0
def test_squirrel_play_50_true():
    assert not squirrel_play(50, True)
Beispiel #10
0
def test_squirrel_play_50_false():
    assert not squirrel_play(50, False)
Beispiel #11
0
def test_squirrel_play_90_true():
    assert squirrel_play(90, True)
Beispiel #12
0
def test_squirrel_play_90_false():
    assert squirrel_play(90, False)
Beispiel #13
0
def test_squirrel_play_95_true():
    assert squirrel_play(95, True)