Test: Merged bug.932.t into recurrence.t

This commit is contained in:
Paul Beckingham
2015-07-23 17:20:00 -04:00
parent 18a41fde59
commit e0275d404f
2 changed files with 29 additions and 76 deletions

View File

@@ -243,6 +243,7 @@ class TestDeletionRecurrence(TestCase):
code, out, err = self.t("2 delete", input="y\n")
self.assertIn("Deleted 5 tasks.", out)
class TestAppendPrependRecurrence(TestCase):
def setUp(self):
"""Executed before each test in the class"""
@@ -264,6 +265,7 @@ class TestAppendPrependRecurrence(TestCase):
code, out, err = self.t("2 prepend PRE", input="y\n")
self.assertIn("Prepended 2 tasks.", out)
class TestNoDueDate(TestCase):
def setUp(self):
"""Executed before each test in the class"""
@@ -275,6 +277,33 @@ class TestNoDueDate(TestCase):
self.assertIn("A recurring task must also have a 'due' date.", err)
class TestBug932(TestCase):
def setUp(self):
"""Executed before each test in the class"""
self.t = Task()
def test_modify_due_propagate(self):
"""Verify due date modifications propagate"""
# add a recurring task with multiple child tasks
# - modify a child task and test for propagation
# - modify the parent task and test for propagation
self.t("add R due:yesterday recur:daily")
self.t("list") # GC/handleRecurrence
self.t("2 modify project:P", input="y\n")
code, out, err = self.t("list")
self.assertIn("2 P", out)
self.assertIn("3 P", out)
self.assertIn("4 P", out)
self.t("1 modify priority:H", input="y\n")
code, out, err = self.t("list")
self.assertIn("2 H P", out)
self.assertIn("3 H P", out)
self.assertIn("4 H P", out)
# TODO Wait a recurring task
# TODO Upgrade a task to a recurring task
# TODO Upgrade a task to a recurring task, but omit the due date (error handling)