summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Temporal/Calendar/prototype/month/branding.js
blob: 505485af9fc14b471061b116d982c7505dfb5267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
// 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.calendar.prototype.month
description: Throw a TypeError if the receiver is invalid
features: [Symbol, Temporal]
---*/

const month = Temporal.Calendar.prototype.month;

assert.sameValue(typeof month, "function");

const args = [new Temporal.PlainDate(2000, 1, 1)];

assert.throws(TypeError, () => month.apply(undefined, args), "undefined");
assert.throws(TypeError, () => month.apply(null, args), "null");
assert.throws(TypeError, () => month.apply(true, args), "true");
assert.throws(TypeError, () => month.apply("", args), "empty string");
assert.throws(TypeError, () => month.apply(Symbol(), args), "symbol");
assert.throws(TypeError, () => month.apply(1, args), "1");
assert.throws(TypeError, () => month.apply({}, args), "plain object");
assert.throws(TypeError, () => month.apply(Temporal.Calendar, args), "Temporal.Calendar");
assert.throws(TypeError, () => month.apply(Temporal.Calendar.prototype, args), "Temporal.Calendar.prototype");

reportCompare(0, 0);