Merge pull request #6495 from GULPF/Fix-countLeapYears

Fix countLeapYears
This commit is contained in:
Dominik Picheta
2017-10-16 15:40:29 +01:00
committed by GitHub
2 changed files with 7 additions and 1 deletions

View File

@@ -235,3 +235,9 @@ block dstTest:
parsedJul = parse("2016-07-01 04:00:00+01:00", "yyyy-MM-dd HH:mm:sszzz")
doAssert toTime(parsedJan) == fromSeconds(1451962800)
doAssert toTime(parsedJul) == fromSeconds(1467342000)
block countLeapYears:
# 1920, 2004 and 2020 are leap years, and should be counted starting at the following year
doAssert countLeapYears(1920) + 1 == countLeapYears(1921)
doAssert countLeapYears(2004) + 1 == countLeapYears(2005)
doAssert countLeapYears(2020) + 1 == countLeapYears(2021)