Executed before each test in the class
(self)
| 37 | |
| 38 | class TestDebugMode(TestCase): |
| 39 | def setUp(self): |
| 40 | """Executed before each test in the class""" |
| 41 | self.t = Task() |
| 42 | self.t("add one") |
| 43 | self.t("add two") |
| 44 | |
| 45 | def test_debug_output(self): |
| 46 | """Verify debug mode generates interesting output""" |