Test PlainYearMonth.prototype.valueOf.

This commit is contained in:
Ms2ger 2022-02-01 15:37:32 +01:00 committed by Rick Waldron
parent ab6fab987e
commit 51d5cf9a44
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
// 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.prototype.valueof
description: Basic tests for valueOf().
features: [Temporal]
---*/
const plainYearMonth = Temporal.PlainYearMonth.from("1963-02");
const plainYearMonth2 = Temporal.PlainYearMonth.from("1963-02");
assert.throws(TypeError, () => plainYearMonth.valueOf(), "valueOf");
assert.throws(TypeError, () => plainYearMonth < plainYearMonth, "<");
assert.throws(TypeError, () => plainYearMonth <= plainYearMonth, "<=");
assert.throws(TypeError, () => plainYearMonth > plainYearMonth, ">");
assert.throws(TypeError, () => plainYearMonth >= plainYearMonth, ">=");
assert.sameValue(plainYearMonth === plainYearMonth, true, "===");
assert.sameValue(plainYearMonth === plainYearMonth2, false, "===");
assert.sameValue(plainYearMonth !== plainYearMonth, false, "!==");
assert.sameValue(plainYearMonth !== plainYearMonth2, true, "!==");