blob: 212c2ac82e56155c9ebcb9dd5e3274e6c27c86a2 [file] [log] [blame]
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.calendar.prototype.year
description: A number is converted to a string, then to Temporal.PlainDate
features: [Temporal]
---*/
const instance = new Temporal.Calendar("iso8601");
const arg = 19761118;
const result = instance.year(arg);
assert.sameValue(result, 1976, "19761118 is a valid ISO string for PlainDate");
const numbers = [
1,
-19761118,
1234567890,
];
for (const arg of numbers) {
assert.throws(
RangeError,
() => instance.year(arg),
`Number ${arg} does not convert to a valid ISO string for PlainDate`
);
}