]>
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:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (parent:
94038d3 )
import tempfile
import unittest
import tempfile
import unittest
-from .task import TaskWarrior
+from .task import TaskWarrior, Task
class TasklibTest(unittest.TestCase):
class TasklibTest(unittest.TestCase):
self.assertEqual(len(self.tw.tasks.all()), 0)
def test_all_non_empty(self):
self.assertEqual(len(self.tw.tasks.all()), 0)
def test_all_non_empty(self):
- self.tw.execute_command(['add', 'test task'] )
+ Task(self.tw, description="test task").save( )
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.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'] )
+ Task(self.tw, description="test task").save( )
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.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'] )
+ Task(self.tw, description="test task").save( )
self.assertEqual(len(self.tw.tasks.completed()), 0)
def test_completed_non_empty(self):
self.assertEqual(len(self.tw.tasks.completed()), 0)
def test_completed_non_empty(self):
- self.tw.execute_command(['add', 'test task'] )
+ Task(self.tw, description="test task").save( )
self.assertEqual(len(self.tw.tasks.completed()), 0)
self.tw.tasks.all()[0].done()
self.assertEqual(len(self.tw.tasks.completed()), 1)
self.assertEqual(len(self.tw.tasks.completed()), 0)
self.tw.tasks.all()[0].done()
self.assertEqual(len(self.tw.tasks.completed()), 1)
def setUp(self):
super(AnnotationTest, self).setUp()
def setUp(self):
super(AnnotationTest, self).setUp()
- self.tw.execute_command(['add', 'test task'] )
+ Task(self.tw, description="test task").save( )
def test_adding_annotation(self):
task = self.tw.tasks.get()
def test_adding_annotation(self):
task = self.tw.tasks.get()
class UnicodeTest(TasklibTest):
def test_unicode_task(self):
class UnicodeTest(TasklibTest):
def test_unicode_task(self):
- self.tw.execute_command(['add', '†åßk'] )
+ Task(self.tw, description="†åßk").save( )
self.tw.tasks.get()
def test_non_unicode_task(self):
self.tw.tasks.get()
def test_non_unicode_task(self):
- self.tw.execute_command(['add', 'task'] )
+ Task(self.tw, description="test task").save( )