Executed before each test in the class
(self)
| 166 | |
| 167 | class TestRecurrenceTasks(TestCase): |
| 168 | def setUp(self): |
| 169 | """Executed before each test in the class""" |
| 170 | self.t = Task() |
| 171 | self.t("add simple") |
| 172 | self.t("add complex due:today recur:daily") |
| 173 | |
| 174 | def test_change_propagation(self): |
| 175 | """Verify that changes (modify, delete) are propagated correctly""" |