- TW-1424 Using a date of '1824days' (in the future) fails (thanks to Black Ops
          Testing).
This commit is contained in:
Paul Beckingham 2014-10-13 00:39:17 -04:00
parent 0183c8a231
commit a5563ba135
2 changed files with 37 additions and 0 deletions

View file

@ -164,6 +164,8 @@
Black Ops Testing).
- TW-1422 Attempt to modify 'id' attribute creates an id attribute (thanks to
Black Ops Testing).
- TW-1424 Using a date of '1824days' (in the future) fails (thanks to Black Ops
Testing).
- TW-1428 Add support for color.uda.<name>.<value> rules.
- Removed deprecated 'echo.command' setting, in favor of the 'header' and
'affected' verbosity tokens.

35
test/tw-1424.t Executable file
View file

@ -0,0 +1,35 @@
#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-
import sys
import os
from datetime import datetime
import unittest
# Ensure python finds the local simpletap module
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from basetest import Task, TestCase, Taskd, ServerTestCase
class Test1424(TestCase):
def setUp(self):
self.t = Task()
def test_1824_days(self):
"""Check that due:1824d works"""
self.t(('add', 'foo', 'due:1824d'))
code, out, err = self.t(('_get', '1.due.year'))
self.assertEqual(out, "%d\n" % (datetime.now().year + 5))
def test_3648_days(self):
"""Check that due:3648d works"""
self.t(('add', 'foo', 'due:3648d'))
code, out, err = self.t(('_get', '1.due.year'))
self.assertEqual(out, "%d\n" % (datetime.now().year + 10))
if __name__ == "__main__":
from simpletap import TAPTestRunner
unittest.main(testRunner=TAPTestRunner())
# vim: ai sts=4 et sw=4