From c38a0b0c799ff2a9942fd80b877240053ea01ad6 Mon Sep 17 00:00:00 2001 From: Rob Golding Date: Sun, 3 Nov 2013 20:54:56 +0000 Subject: [PATCH] Test for task.done() --- tasklib/tests.py | 6 ++++++ 1 file changed, 6 insertions(+) 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) -- 2.39.2