X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/30a5525b762a066b56e6f981c8d79193740419fe..fdaab163072cb27edfef3bd00272449cfa618179:/tasklib/tests.py?ds=inline diff --git a/tasklib/tests.py b/tasklib/tests.py index 94294dc..4f127f0 100644 --- a/tasklib/tests.py +++ b/tasklib/tests.py @@ -36,3 +36,9 @@ class TaskFilterTest(TasklibTest): def test_completed_empty(self): self.tw.execute_command(['add', 'test task']) self.assertEqual(len(self.tw.tasks.completed()), 0) + + def test_completed_non_empty(self): + self.tw.execute_command(['add', 'test task']) + self.assertEqual(len(self.tw.tasks.completed()), 0) + self.tw.tasks.all()[0].done() + self.assertEqual(len(self.tw.tasks.completed()), 1)