Executed before each test in the class
(self)
| 37 | |
| 38 | class TestSequences(TestCase): |
| 39 | def setUp(self): |
| 40 | """Executed before each test in the class""" |
| 41 | self.t = Task() |
| 42 | self.t("add one mississippi") |
| 43 | self.t("add two mississippi") |
| 44 | |
| 45 | def test_sequence_done(self): |
| 46 | """Test sequences in done""" |