Philip Chimento 65a7ace1cb Regularize year zero tests
Some of these strings wouldn't have been valid even with a valid year in
them (e.g. strings ending in +01:00[UTC]) so fix up the strings that we
test. While touching these tests, I took the opportunity to regularize
them, and add some missing ones for ISO strings that convert to Calendar
and TimeZone.
2022-05-03 08:18:02 +02:00

32 lines
817 B
JavaScript

// Copyright (C) 2022 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Negative zero, as an extended year, fails
esid: sec-temporal.plainyearmonth.compare
features: [Temporal]
---*/
const ok = new Temporal.PlainYearMonth(2000, 5);
const invalidStrings = [
"-000000-06",
"-000000-06-24",
"-000000-06-24T15:43:27",
"-000000-06-24T15:43:27+01:00",
"-000000-06-24T15:43:27+00:00[UTC]",
];
invalidStrings.forEach((arg) => {
assert.throws(
RangeError,
() => Temporal.PlainYearMonth.compare(arg, ok),
"Cannot use minus zero as extended year (first argument)"
);
assert.throws(
RangeError,
() => Temporal.PlainYearMonth.compare(ok, arg),
"Cannot use minus zero as extended year (second argument)"
);
});