diff options
author | Tobias Brox <tobias@redpill-linpro.com> | 2023-07-13 23:47:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-13 23:47:59 +0200 |
commit | e424b5d00d2168bc493e8bc99b5f93443fe8dfcf (patch) | |
tree | 760ddf7f01af58c367c0933dd48a8da6b0fe85d3 | |
parent | 2dd2577e77df7d4d6bd31955de40ae0259a17f72 (diff) | |
parent | f430b22c8240a23219f97372f3739461edd8e8b6 (diff) | |
download | calendar-cli-e424b5d00d2168bc493e8bc99b5f93443fe8dfcf.zip |
Merge pull request #106 from fauxmight/fix-test_cal
Remove tests involving `parse_timespec`
-rw-r--r-- | tests/test_cal.py | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/tests/test_cal.py b/tests/test_cal.py index a58e6a9..bd7726f 100644 --- a/tests/test_cal.py +++ b/tests/test_cal.py @@ -3,7 +3,6 @@ import sys sys.path.insert(0,'.') sys.path.insert(1,'..') from datetime import datetime, date -from calendar_cli.cal import parse_timespec from calendar_cli.template import Template """calendar-cli is a command line utility, and it's an explicit design @@ -62,70 +61,3 @@ class TestTemplate: assert text == "Date is maybe 1990-10-10" text = template.format() assert text == "Date is maybe bar" - -class TestParseTimestamp: - def _testTimeSpec(self, expected): - for input in expected: - assert parse_timespec(input) == expected[input] - - @pytest.mark.skip(reason="Not implemented yet, waiting for feedback on https://github.com/gweis/isodate/issues/77") - def testIsoIntervals(self): - raise pytest.SkipTest("") - expected = { - "2007-03-01T13:00:00Z/2008-05-11T15:30:00Z": - (datetime(2007,3,1,13), datetime(2008,5,11,15,30)), - "2007-03-01T13:00:00Z/P1Y2M10DT2H30M": - (datetime(2007,3,1,13), datetime(2008,5,11,15,30)), - "P1Y2M10DT2H30M/2008-05-11T15:30:00Z": - (datetime(2007,3,1,13), datetime(2008,5,11,15,30)) - } - self._testTimeSpec(expected) - - def testOneTimestamp(self): - expected = { - "2007-03-01T13:00:00": - (datetime(2007,3,1,13), None), - "2007-03-01 13:00:00": - (datetime(2007,3,1,13), None), - } - self._testTimeSpec(expected) - - def testOneDate(self): - expected = { - "2007-03-01": - (date(2007,3,1), None) - } - self._testTimeSpec(expected) - - def testTwoTimestamps(self): - expected = { - "2007-03-01T13:00:00 2007-03-11T13:30:00": - (datetime(2007,3,1,13), datetime(2007,3,11,13,30)), - "2007-03-01 13:00:00 2007-03-11 13:30:00": - (datetime(2007,3,1,13), datetime(2007,3,11,13,30)), - } - self._testTimeSpec(expected) - - def testTwoDates(self): - expected = { - "2007-03-01 2007-03-11": - (date(2007,3,1), date(2007,3,11)) - } - self._testTimeSpec(expected) - - def testCalendarCliFormat(self): - expected = { - "2007-03-01T13:00:00+10d": - (datetime(2007,3,1,13), datetime(2007,3,11,13)), - "2007-03-01T13:00:00+2h": - (datetime(2007,3,1,13), datetime(2007,3,1,15)), - "2007-03-01T13:00:00+2.5h": - (datetime(2007,3,1,13), datetime(2007,3,1,15,30)), - "2007-03-01T13:00:00+2h30m": - (datetime(2007,3,1,13), datetime(2007,3,1,15,30)), - "2007-03-01+10d": - (date(2007,3,1), date(2007,3,11)) - } - self._testTimeSpec(expected) - - |