Add a test for PlainYearMonth#toPlainDate().

This commit is contained in:
Ms2ger 2021-12-24 14:08:10 +01:00 committed by Rick Waldron
parent 439ac8c2dc
commit 3f88250aca
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plainyearmonth.prototype.toplaindate
description: Throws a RangeError if the resulting PlainDate is out of range
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const min = Temporal.PlainYearMonth.from("-271821-04");
assert.throws(RangeError, () => min.toPlainDate({ day: 18 }), "min");
TemporalHelpers.assertPlainDate(min.toPlainDate({ day: 19 }),
-271821, 4, "M04", 19, "min");
const max = Temporal.PlainYearMonth.from("+275760-09");
assert.throws(RangeError, () => max.toPlainDate({ day: 14 }), "max");
TemporalHelpers.assertPlainDate(max.toPlainDate({ day: 13 }),
275760, 9, "M09", 13, "max");