mediawiki-extensions-Discus.../tests/cases/timestamp-parser-dst.json
Ed Sanders c5d1029b25 Move /cases and /data up to /tests
Theses are no longer QUnit specific.

Change-Id: I5f3cca1ff686922e0cdaaedb80858f37df04799a
2020-05-18 21:47:17 +01:00

51 lines
1.2 KiB
JSON

[
{
"sample": "01:30, 28 Oct 2018 (CEST)",
"expected": "2018-10-28T01:30:00+02:00",
"expectedUtc": "2018-10-27T23:30:00Z",
"format": "H:i, j M Y",
"timezone": "Europe/Warsaw",
"timezoneAbbrs": {
"CET": "CET",
"CEST": "CEST"
},
"message": "Before DST change (not ambiguous)"
},
{
"sample": "02:30, 28 Oct 2018 (CEST)",
"expected": "2018-10-28T02:30:00+02:00",
"expectedUtc": "2018-10-28T00:30:00Z",
"format": "H:i, j M Y",
"timezone": "Europe/Warsaw",
"timezoneAbbrs": {
"CET": "CET",
"CEST": "CEST"
},
"message": "Before DST change (ambiguous)"
},
{
"sample": "02:30, 28 Oct 2018 (CET)",
"expected": "2018-10-28T02:30:00+01:00",
"expectedUtc": "2018-10-28T01:30:00Z",
"format": "H:i, j M Y",
"timezone": "Europe/Warsaw",
"timezoneAbbrs": {
"CET": "CET",
"CEST": "CEST"
},
"message": "After DST change (ambiguous) // At 03:00, time goes back by 1 hour"
},
{
"sample": "03:30, 28 Oct 2018 (CET)",
"expected": "2018-10-28T03:30:00+01:00",
"expectedUtc": "2018-10-28T02:30:00Z",
"format": "H:i, j M Y",
"timezone": "Europe/Warsaw",
"timezoneAbbrs": {
"CET": "CET",
"CEST": "CEST"
},
"message": "After DST change (not ambiguous)"
}
]