Files
taskwarrior-2.x/test/filter-empty.t
Paul Beckingham 05b1d30c0a Unit Tests
- Removed unnecessary REPO_DIR.
2014-08-11 13:10:29 -04:00

38 lines
1.1 KiB
Python
Executable File

#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-
import sys
import os
import unittest
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from basetest import Task, TestCase
class TestEmptyFilter(TestCase):
def setUp(self):
self.t = Task()
def test_empty_filter_warning(self):
"""Modify tasks with no filter."""
self.t(("add", "foo"))
self.t(("add", "bar"))
code, out, err = self.t.runError(("modify", "rc.allow.empty.filter=yes", "rc.confirmation=no", "priority:H"))
self.assertIn("Command prevented from running.", out)
def test_empty_filter_error(self):
"""Modify tasks with no filter, and disallowed confirmation."""
self.t(("add", "foo"))
self.t(("add", "bar"))
code, out, err = self.t.runError(("modify", "rc.allow.empty.filter=no", "priority:H"))
self.assertIn("You did not specify a filter, and with the 'allow.empty.filter' value, no action is taken.", out)
if __name__ == "__main__":
from simpletap import TAPTestRunner
unittest.main(testRunner=TAPTestRunner())
# vim: ai sts=4 et sw=4