forked from emilybache/Parrot-Refactoring-Kata
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest_parrot.py
56 lines (34 loc) · 1.55 KB
/
test_parrot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from parrot import Parrot, ParrotType
def test_speed_of_european_parrot():
parrot = Parrot(ParrotType.EUROPEAN, 0, 0, False)
assert parrot.speed() == 12.0
def test_cry_of_european_parrot():
parrot = Parrot(ParrotType.EUROPEAN, 0, 0, False)
assert parrot.cry() == "Sqoork!"
def test_speed_of_african_parrot_with_one_coconut():
parrot = Parrot(ParrotType.AFRICAN, 1, 0, False)
assert parrot.speed() == 3.0
def test_cry_of_african_parrot():
parrot = Parrot(ParrotType.AFRICAN, 1, 0, False)
assert parrot.cry() == "Sqaark!"
def test_speed_of_african_parrot_with_two_coconuts():
parrot = Parrot(ParrotType.AFRICAN, 2, 0, False)
assert parrot.speed() == 0.0
def test_speed_of_african_parrot_with_no_coconuts():
parrot = Parrot(ParrotType.AFRICAN, 0, 0, False)
assert parrot.speed() == 12.0
def test_speed_norwegian_blue_parrot_nailed():
parrot = Parrot(ParrotType.NORWEGIAN_BLUE, 0, 1.5, True)
assert parrot.speed() == 0.0
def test_speed_norwegian_blue_parrot_not_nailed():
parrot = Parrot(ParrotType.NORWEGIAN_BLUE, 0, 1.5, False)
assert parrot.speed() == 18.0
def test_speed_norwegian_blue_parrot_not_nailed_high_voltage():
parrot = Parrot(ParrotType.NORWEGIAN_BLUE, 0, 4, False)
assert parrot.speed() == 24.0
def test_cry_norwegian_blue_parrot_high_voltage():
parrot = Parrot(ParrotType.NORWEGIAN_BLUE, 0, 4, False)
assert parrot.cry() == "Bzzzzzz"
def test_cry_norwegian_blue_parrot_no_voltage():
parrot = Parrot(ParrotType.NORWEGIAN_BLUE, 0, 0, False)
assert parrot.cry() == "..."