Test: Added test for +nonag

This commit is contained in:
Paul Beckingham 2015-10-28 11:30:51 -04:00
parent ec027b707d
commit 78b4e4fcc8

View file

@ -50,6 +50,10 @@ class TestNagging(TestCase):
self.t("add priority:M four")
self.t("add priority:L five")
self.t("add six")
self.t("add seven +nonag")
code, out, err = self.t("7 done")
self.assertNotIn("NAG", err)
code, out, err = self.t("6 done")
self.assertIn("NAG", err)