X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/30a5525b762a066b56e6f981c8d79193740419fe..141660ecf88b2be17b9685dc2d908b73386ad03a:/tasklib/tests.py diff --git a/tasklib/tests.py b/tasklib/tests.py index 94294dc..8507f95 100644 --- a/tasklib/tests.py +++ b/tasklib/tests.py @@ -8,7 +8,7 @@ from .task import TaskWarrior class TasklibTest(unittest.TestCase): def setUp(self): - self.tmp = tempfile.mkdtemp() + self.tmp = tempfile.mkdtemp(dir='.') self.tw = TaskWarrior(data_location=self.tmp) def tearDown(self): @@ -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)