]>
git.madduck.net Git - etc/taskwarrior.git/blobdiff - tasklib/tests.py
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:
self.assertEqual(t['depends'], set([dependency1, dependency2]))
self.assertEqual(t['depends'], set([dependency1, dependency2]))
+ def test_add_to_empty_dependency_set(self):
+ # Adds dependency to task with one dependencies
+ t = Task(self.tw, description="test task")
+ dependency = Task(self.tw, description="needs to be done first")
+
+ dependency.save()
+
+ t['depends'].add(dependency)
+ t.save()
+
+ self.assertEqual(t['depends'], set([dependency]))
+
def test_simple_dependency_set_save_repeatedly(self):
# Adds only one dependency to task with no dependencies
t = Task(self.tw, description="test task")
def test_simple_dependency_set_save_repeatedly(self):
# Adds only one dependency to task with no dependencies
t = Task(self.tw, description="test task")
def test_saving_unmodified_task(self):
t = Task(self.tw, description="test task")
t.save()
def test_saving_unmodified_task(self):
t = Task(self.tw, description="test task")
t.save()
t.save()
def test_adding_tag_by_appending(self):
t.save()
def test_adding_tag_by_appending(self):
t.save()
t['tags'].append('test2')
t.save()
t.save()
t['tags'].append('test2')
t.save()
self.assertEqual(t['tags'], ['test1', 'test2'])
self.assertEqual(t['tags'], ['test1', 'test2'])
+ def test_adding_tag_by_appending_empty(self):
+ t = Task(self.tw, description="test task")
+ t.save()
+ t['tags'].append('test')
+ t.save()
+ self.assertEqual(t['tags'], ['test'])
+
class AnnotationTest(TasklibTest):
class AnnotationTest(TasklibTest):
task.remove_annotation(ann)
self.assertEqual(len(task['annotations']), 0)
task.remove_annotation(ann)
self.assertEqual(len(task['annotations']), 0)
+ def test_annotation_after_modification(self):
+ task = self.tw.tasks.get()
+ task['project'] = 'test'
+ task.add_annotation('I should really do this task')
+ self.assertEqual(task['project'], 'test')
+ task.save()
+ self.assertEqual(task['project'], 'test')
+
class UnicodeTest(TasklibTest):
class UnicodeTest(TasklibTest):