]> git.madduck.net Git - etc/taskwarrior.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

tests: Add tests for starting active task
authorTomas Babej <tomasbabej@gmail.com>
Tue, 7 Apr 2015 19:50:36 +0000 (21:50 +0200)
committerTomas Babej <tomasbabej@gmail.com>
Tue, 7 Apr 2015 19:50:36 +0000 (21:50 +0200)
tasklib/tests.py

index 1e79ca8c4f21cc47adb2f7087776ebd5753e1acc..adcb3c855f302596a02948d604aba9820e245c12 100644 (file)
@@ -330,6 +330,12 @@ class TaskTest(TasklibTest):
         t.save()
         self.assertFalse(t.active)
 
+    def test_start_active_task(self):
+        t = Task(self.tw, description="test task")
+        t.save()
+        t.start()
+        self.assertRaises(Task.ActiveTask, t.start)
+
     def test_stop_completed_task(self):
         t = Task(self.tw, description="test task")
         t.save()