X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/e039b3c11b14402131ee31df3d6a6546e8e36afd..bcd0eddde59c3ff8f5d8321b54c0cdf6613d78d0:/tasklib/tests.py diff --git a/tasklib/tests.py b/tasklib/tests.py index 8507f95..c738739 100644 --- a/tasklib/tests.py +++ b/tasklib/tests.py @@ -42,3 +42,37 @@ class TaskFilterTest(TasklibTest): self.assertEqual(len(self.tw.tasks.completed()), 0) self.tw.tasks.all()[0].done() self.assertEqual(len(self.tw.tasks.completed()), 1) + + +class AnnotationTest(TasklibTest): + + def setUp(self): + super(AnnotationTest, self).setUp() + self.tw.execute_command(['add', 'test task']) + + def test_adding_annotation(self): + task = self.tw.tasks.get() + task.add_annotation('test annotation') + self.assertEqual(len(task['annotations']), 1) + ann = task['annotations'][0] + self.assertEqual(ann['description'], 'test annotation') + + def test_removing_annotation(self): + task = self.tw.tasks.get() + task.add_annotation('test annotation') + ann = task['annotations'][0] + ann.remove() + self.assertEqual(len(task['annotations']), 0) + + def test_removing_annotation_by_description(self): + task = self.tw.tasks.get() + task.add_annotation('test annotation') + task.remove_annotation('test annotation') + self.assertEqual(len(task['annotations']), 0) + + def test_removing_annotation_by_obj(self): + task = self.tw.tasks.get() + task.add_annotation('test annotation') + ann = task['annotations'][0] + task.remove_annotation(ann) + self.assertEqual(len(task['annotations']), 0)