2022-01-25 11:21:17 +01:00
|
|
|
// 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.plainyearmonth.from
|
2022-04-20 00:43:18 +02:00
|
|
|
description: A PlainYearMonth object is copied, not returned directly
|
2022-01-25 11:21:17 +01:00
|
|
|
includes: [temporalHelpers.js]
|
|
|
|
features: [Temporal]
|
|
|
|
---*/
|
|
|
|
|
2022-04-20 00:43:18 +02:00
|
|
|
const orig = new Temporal.PlainYearMonth(2000, 5, undefined, 7);
|
|
|
|
const result = Temporal.PlainYearMonth.from(orig);
|
2022-01-25 11:21:17 +01:00
|
|
|
|
2022-04-20 00:43:18 +02:00
|
|
|
TemporalHelpers.assertPlainYearMonth(
|
|
|
|
result,
|
|
|
|
2000, 5, "M05",
|
|
|
|
"PlainYearMonth is copied",
|
|
|
|
/* era = */ undefined, /* eraYear = */ undefined, /* isoDay = */ 7
|
|
|
|
);
|
|
|
|
|
2024-06-04 17:35:22 +02:00
|
|
|
assert.sameValue(result.calendarId, orig.calendarId, "Calendar is copied");
|
2022-09-20 20:22:56 +02:00
|
|
|
|
2022-04-20 00:43:18 +02:00
|
|
|
assert.notSameValue(
|
|
|
|
result,
|
|
|
|
orig,
|
|
|
|
"When a PlainYearMonth is given, the returned value is not the original PlainYearMonth"
|
|
|
|
);
|