(self)
| 38 | |
| 39 | class TestTaskEdit(TestCase): |
| 40 | def setUp(self): |
| 41 | self.t = Task() |
| 42 | |
| 43 | # Workaround to always assume changes were introduced via "task edit" |
| 44 | self.editor = mkstemp_exec(b"echo '' >> $1\n") |
| 45 | |
| 46 | self.t.env["VISUAL"] = self.editor |
| 47 | |
| 48 | def test_newline_description_edit(self): |
| 49 | """task edit - parsing entries containing multiline descriptions""" |
nothing calls this directly
no test coverage detected