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
|
|
|
|
description: A PlainYearMonth argument is cloned
|
|
|
|
includes: [temporalHelpers.js]
|
|
|
|
features: [Temporal]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
const plainDate = Temporal.PlainDate.from("1976-11-18");
|
|
|
|
const plainYearMonth = Temporal.PlainYearMonth.from(plainDate);
|
|
|
|
TemporalHelpers.assertPlainYearMonth(plainYearMonth, 1976, 11, "M11");
|
|
|
|
const fields = plainYearMonth.getISOFields();
|
2023-02-17 21:28:55 +01:00
|
|
|
assert.sameValue(fields.calendar, "iso8601", "calendar slot should store a string");
|
2022-01-25 11:21:17 +01:00
|
|
|
assert.sameValue(fields.isoDay, 1, "isoDay");
|
|
|
|
assert.sameValue(fields.isoMonth, 11, "isoMonth");
|
|
|
|
assert.sameValue(fields.isoYear, 1976, "isoYear");
|