]> 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:

Merge branch 'master' of github.com:robgolding63/tasklib
authorRob Golding <rob@robgolding.com>
Sun, 3 Nov 2013 21:19:45 +0000 (21:19 +0000)
committerRob Golding <rob@robgolding.com>
Sun, 3 Nov 2013 21:19:45 +0000 (21:19 +0000)
Conflicts:
tasklib/tests.py

.travis.yml [new file with mode: 0644]
setup.py
tasklib/task.py
tasklib/tests.py

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..945c15d
--- /dev/null
@@ -0,0 +1,8 @@
+language: python
+python:
+    - "2.6"
+    - "2.7"
+    - "3.2"
+    - "3.3"
+install: "pip install ."
+script: "python setup.py test"
index 2d1272973e628aeb692f99fd692739e45cbee126..039d1d975a2b62d2291e47fb870b4d0dbf490447 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -12,6 +12,7 @@ setup(
     download_url='https://github.com/robgolding63/tasklib/downloads',
     packages=find_packages(),
     include_package_data=True,
+    test_suite='tasklib.tests',
     classifiers=[
         'Development Status :: 3 - Alpha',
         'License :: OSI Approved :: BSD License',
index c3f8f3e540dc741bd077bfa84cb32e246cae38de..e346f6704b627b5551edfb0bda8a4b2fc69bb002 100644 (file)
@@ -8,6 +8,7 @@ import subprocess
 DATE_FORMAT = '%Y%m%dT%H%M%SZ'
 REPR_OUTPUT_SIZE = 10
 PENDING = 'pending'
+COMPLETED = 'completed'
 
 logger = logging.getLogger(__name__)
 
@@ -24,7 +25,6 @@ class Task(object):
     def __init__(self, warrior, data={}):
         self.warrior = warrior
         self._data = data
-        print data
         self._modified_fields = set()
 
     def __unicode__(self):
@@ -76,7 +76,7 @@ class Task(object):
         })
 
     def done(self):
-        self.warrior.execute_comamnd([self['id'], 'done'])
+        self.warrior.execute_command([self['id'], 'done'])
 
     def save(self):
         args = [self['id'], 'modify'] if self['id'] else ['add']
@@ -195,6 +195,9 @@ class TaskQuerySet(object):
     def pending(self):
         return self.filter(status=PENDING)
 
+    def completed(self):
+        return self.filter(status=COMPLETED)
+
     def filter(self, *args, **kwargs):
         """
         Returns a new TaskQuerySet with the given filters added.
index 66f04c7b9394b83c5bfd3912fd4d108d7a9788c2..4f127f01c2475b4f92fd5578782996c0c6b62243 100644 (file)
@@ -1,7 +1,6 @@
 import shutil
 import tempfile
 import unittest
-import uuid
 
 from .task import TaskWarrior
 
@@ -26,3 +25,20 @@ class TaskFilterTest(TasklibTest):
         self.assertEqual(len(self.tw.tasks.all()), 1)
         self.assertEqual(self.tw.tasks.all()[0]['description'], 'test task')
         self.assertEqual(self.tw.tasks.all()[0]['status'], 'pending')
+
+    def test_pending_non_empty(self):
+        self.tw.execute_command(['add', 'test task'])
+        self.assertEqual(len(self.tw.tasks.pending()), 1)
+        self.assertEqual(self.tw.tasks.pending()[0]['description'],
+                         'test task')
+        self.assertEqual(self.tw.tasks.pending()[0]['status'], 'pending')
+
+    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)