-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtest_cattery.py
44 lines (32 loc) · 1.26 KB
/
test_cattery.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
#!/usr/bin/env python
"""Test cattery.py file."""
import unittest
from . import cattery
class TestCattery(unittest.TestCase):
"""Test Cattery class."""
def setUp(self):
self.cattery = cattery.Cattery()
# add_cats
def test__add_cats__succeeds(self):
"""It should successfully add cats."""
self.cattery.add_cats(["Fluffy", "Snookums"])
assert self.cattery.cats == ["Fluffy", "Snookums"]
assert self.cattery.num_cats == 2
# remove_cat
def test__remove_cat__succeeds(self):
"""It should remove a cat."""
self.cattery.add_cats(["Fluffy", "Junior"])
self.cattery.remove_cat("Fluffy")
assert self.cattery.cats == ["Junior"]
assert self.cattery.num_cats == 1
def test__remove_cat__no_cats__fails(self):
"""It should fail to remove non-existent cats."""
with self.assertRaises(cattery.CatNotFound):
self.cattery.remove_cat("Fluffles")
def test__remove_cat__cat_not_in_cattery__fails(self):
"""It should fail to remove cats not in the cattery."""
self.cattery.add_cats(["Fluffy"])
with self.assertRaises(cattery.CatNotFound):
self.cattery.remove_cat("Snookums")
if __name__ == '__main__':
unittest.main()