diff options
Diffstat (limited to 'tests/js/ttimes.nim')
-rw-r--r-- | tests/js/ttimes.nim | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/js/ttimes.nim b/tests/js/ttimes.nim index 644e9670a..20ba14245 100644 --- a/tests/js/ttimes.nim +++ b/tests/js/ttimes.nim @@ -11,3 +11,16 @@ import times block yeardayTest: # check if yearday attribute is properly set on TimeInfo creation doAssert fromSeconds(2147483647).getGMTime().yearday == 18 + +block localTimezoneTest: + # check if timezone is properly set during Time to TimeInfo conversion + doAssert fromSeconds(2147483647).getLocalTime().timezone == getTimezone() + +block timestampPersistenceTest: + # check if timestamp persists during TimeInfo to Time conversion + const + timeString = "2017-03-21T12:34:56+03:00" + timeStringGmt = "2017-03-21T09:34:56+00:00" + fmt = "yyyy-MM-dd'T'HH:mm:sszzz" + + doAssert $timeString.parse(fmt).toTime().getGMTime() == timeStringGmt |