X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/ce0455c6318ad4623f10a0d35aea2d929fc57fdd..e75e49f86808bf78d12fd8df0aeceab426f947f1:/tasklib/tests.py diff --git a/tasklib/tests.py b/tasklib/tests.py index 77f1980..3e60ac0 100644 --- a/tasklib/tests.py +++ b/tasklib/tests.py @@ -614,6 +614,23 @@ class TaskTest(TasklibTest): t2 = self.tw.tasks.get(uuid=t1['uuid']) self.assertEqual(t1.__hash__(), t2.__hash__()) + def test_hash_unequal_unsaved_tasks(self): + # Compare the hash of the task using two different objects + t1 = Task(self.tw, description="test task 1") + t2 = Task(self.tw, description="test task 2") + + self.assertNotEqual(t1.__hash__(), t2.__hash__()) + + def test_hash_unequal_saved_tasks(self): + # Compare the hash of the task using two different objects + t1 = Task(self.tw, description="test task 1") + t2 = Task(self.tw, description="test task 2") + + t1.save() + t2.save() + + self.assertNotEqual(t1.__hash__(), t2.__hash__()) + def test_adding_task_with_priority(self): t = Task(self.tw, description="test task", priority="M") t.save() @@ -1359,4 +1376,5 @@ class TaskWarriorBackendTest(TasklibTest): def test_config(self): assert self.tw.config['nag'] == "You have more urgent tasks." - assert self.tw.config['debug'] == "no" + assert self.tw.config['default.command'] == "next" + assert self.tw.config['dependency.indicator'] == "D"