From f7b626133dce7d56d3df20ac8822f0fc310b995e Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Wed, 25 May 2022 11:51:40 +0200 Subject: [PATCH] Temporal: Add tests for prototype.constructor. --- .../Temporal/Calendar/prototype/constructor.js | 16 ++++++++++++++++ .../Temporal/Duration/prototype/constructor.js | 16 ++++++++++++++++ .../Temporal/Instant/prototype/constructor.js | 16 ++++++++++++++++ .../Temporal/PlainDate/prototype/constructor.js | 16 ++++++++++++++++ .../PlainDateTime/prototype/constructor.js | 16 ++++++++++++++++ .../PlainMonthDay/prototype/constructor.js | 16 ++++++++++++++++ .../Temporal/PlainTime/prototype/constructor.js | 16 ++++++++++++++++ .../PlainYearMonth/prototype/constructor.js | 16 ++++++++++++++++ .../Temporal/TimeZone/prototype/constructor.js | 16 ++++++++++++++++ .../ZonedDateTime/prototype/constructor.js | 16 ++++++++++++++++ 10 files changed, 160 insertions(+) create mode 100644 test/built-ins/Temporal/Calendar/prototype/constructor.js create mode 100644 test/built-ins/Temporal/Duration/prototype/constructor.js create mode 100644 test/built-ins/Temporal/Instant/prototype/constructor.js create mode 100644 test/built-ins/Temporal/PlainDate/prototype/constructor.js create mode 100644 test/built-ins/Temporal/PlainDateTime/prototype/constructor.js create mode 100644 test/built-ins/Temporal/PlainMonthDay/prototype/constructor.js create mode 100644 test/built-ins/Temporal/PlainTime/prototype/constructor.js create mode 100644 test/built-ins/Temporal/PlainYearMonth/prototype/constructor.js create mode 100644 test/built-ins/Temporal/TimeZone/prototype/constructor.js create mode 100644 test/built-ins/Temporal/ZonedDateTime/prototype/constructor.js diff --git a/test/built-ins/Temporal/Calendar/prototype/constructor.js b/test/built-ins/Temporal/Calendar/prototype/constructor.js new file mode 100644 index 0000000000..ea54a881cd --- /dev/null +++ b/test/built-ins/Temporal/Calendar/prototype/constructor.js @@ -0,0 +1,16 @@ +// 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.calendar.prototype.constructor +description: Test for Temporal.Calendar.prototype.constructor. +info: The initial value of Temporal.Calendar.prototype.constructor is %Temporal.Calendar%. +includes: [propertyHelper.js] +---*/ + +verifyProperty(Temporal.Calendar.prototype, "constructor", { + value: Temporal.Calendar, + writable: true, + enumerable: false, + configurable: true, +}); diff --git a/test/built-ins/Temporal/Duration/prototype/constructor.js b/test/built-ins/Temporal/Duration/prototype/constructor.js new file mode 100644 index 0000000000..ecb9311bae --- /dev/null +++ b/test/built-ins/Temporal/Duration/prototype/constructor.js @@ -0,0 +1,16 @@ +// 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.duration.prototype.constructor +description: Test for Temporal.Duration.prototype.constructor. +info: The initial value of Temporal.Duration.prototype.constructor is %Temporal.Duration%. +includes: [propertyHelper.js] +---*/ + +verifyProperty(Temporal.Duration.prototype, "constructor", { + value: Temporal.Duration, + writable: true, + enumerable: false, + configurable: true, +}); diff --git a/test/built-ins/Temporal/Instant/prototype/constructor.js b/test/built-ins/Temporal/Instant/prototype/constructor.js new file mode 100644 index 0000000000..5d769a15fa --- /dev/null +++ b/test/built-ins/Temporal/Instant/prototype/constructor.js @@ -0,0 +1,16 @@ +// 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.instant.prototype.constructor +description: Test for Temporal.Instant.prototype.constructor. +info: The initial value of Temporal.Instant.prototype.constructor is %Temporal.Instant%. +includes: [propertyHelper.js] +---*/ + +verifyProperty(Temporal.Instant.prototype, "constructor", { + value: Temporal.Instant, + writable: true, + enumerable: false, + configurable: true, +}); diff --git a/test/built-ins/Temporal/PlainDate/prototype/constructor.js b/test/built-ins/Temporal/PlainDate/prototype/constructor.js new file mode 100644 index 0000000000..dfa2eddada --- /dev/null +++ b/test/built-ins/Temporal/PlainDate/prototype/constructor.js @@ -0,0 +1,16 @@ +// 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.plaindate.prototype.constructor +description: Test for Temporal.PlainDate.prototype.constructor. +info: The initial value of Temporal.PlainDate.prototype.constructor is %Temporal.PlainDate%. +includes: [propertyHelper.js] +---*/ + +verifyProperty(Temporal.PlainDate.prototype, "constructor", { + value: Temporal.PlainDate, + writable: true, + enumerable: false, + configurable: true, +}); diff --git a/test/built-ins/Temporal/PlainDateTime/prototype/constructor.js b/test/built-ins/Temporal/PlainDateTime/prototype/constructor.js new file mode 100644 index 0000000000..6ecbdeb2f9 --- /dev/null +++ b/test/built-ins/Temporal/PlainDateTime/prototype/constructor.js @@ -0,0 +1,16 @@ +// 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.plaindatetime.prototype.constructor +description: Test for Temporal.PlainDateTime.prototype.constructor. +info: The initial value of Temporal.PlainDateTime.prototype.constructor is %Temporal.PlainDateTime%. +includes: [propertyHelper.js] +---*/ + +verifyProperty(Temporal.PlainDateTime.prototype, "constructor", { + value: Temporal.PlainDateTime, + writable: true, + enumerable: false, + configurable: true, +}); diff --git a/test/built-ins/Temporal/PlainMonthDay/prototype/constructor.js b/test/built-ins/Temporal/PlainMonthDay/prototype/constructor.js new file mode 100644 index 0000000000..ea923b7d6b --- /dev/null +++ b/test/built-ins/Temporal/PlainMonthDay/prototype/constructor.js @@ -0,0 +1,16 @@ +// 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.plainmonthday.prototype.constructor +description: Test for Temporal.PlainMonthDay.prototype.constructor. +info: The initial value of Temporal.PlainMonthDay.prototype.constructor is %Temporal.PlainMonthDay%. +includes: [propertyHelper.js] +---*/ + +verifyProperty(Temporal.PlainMonthDay.prototype, "constructor", { + value: Temporal.PlainMonthDay, + writable: true, + enumerable: false, + configurable: true, +}); diff --git a/test/built-ins/Temporal/PlainTime/prototype/constructor.js b/test/built-ins/Temporal/PlainTime/prototype/constructor.js new file mode 100644 index 0000000000..13a1597417 --- /dev/null +++ b/test/built-ins/Temporal/PlainTime/prototype/constructor.js @@ -0,0 +1,16 @@ +// 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.plaintime.prototype.constructor +description: Test for Temporal.PlainTime.prototype.constructor. +info: The initial value of Temporal.PlainTime.prototype.constructor is %Temporal.PlainTime%. +includes: [propertyHelper.js] +---*/ + +verifyProperty(Temporal.PlainTime.prototype, "constructor", { + value: Temporal.PlainTime, + writable: true, + enumerable: false, + configurable: true, +}); diff --git a/test/built-ins/Temporal/PlainYearMonth/prototype/constructor.js b/test/built-ins/Temporal/PlainYearMonth/prototype/constructor.js new file mode 100644 index 0000000000..85027873c5 --- /dev/null +++ b/test/built-ins/Temporal/PlainYearMonth/prototype/constructor.js @@ -0,0 +1,16 @@ +// 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.constructor +description: Test for Temporal.PlainYearMonth.prototype.constructor. +info: The initial value of Temporal.PlainYearMonth.prototype.constructor is %Temporal.PlainYearMonth%. +includes: [propertyHelper.js] +---*/ + +verifyProperty(Temporal.PlainYearMonth.prototype, "constructor", { + value: Temporal.PlainYearMonth, + writable: true, + enumerable: false, + configurable: true, +}); diff --git a/test/built-ins/Temporal/TimeZone/prototype/constructor.js b/test/built-ins/Temporal/TimeZone/prototype/constructor.js new file mode 100644 index 0000000000..6863f421c7 --- /dev/null +++ b/test/built-ins/Temporal/TimeZone/prototype/constructor.js @@ -0,0 +1,16 @@ +// 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.timezone.prototype.constructor +description: Test for Temporal.TimeZone.prototype.constructor. +info: The initial value of Temporal.TimeZone.prototype.constructor is %Temporal.TimeZone%. +includes: [propertyHelper.js] +---*/ + +verifyProperty(Temporal.TimeZone.prototype, "constructor", { + value: Temporal.TimeZone, + writable: true, + enumerable: false, + configurable: true, +}); diff --git a/test/built-ins/Temporal/ZonedDateTime/prototype/constructor.js b/test/built-ins/Temporal/ZonedDateTime/prototype/constructor.js new file mode 100644 index 0000000000..4e83b7ec01 --- /dev/null +++ b/test/built-ins/Temporal/ZonedDateTime/prototype/constructor.js @@ -0,0 +1,16 @@ +// 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.zoneddatetime.prototype.constructor +description: Test for Temporal.ZonedDateTime.prototype.constructor. +info: The initial value of Temporal.ZonedDateTime.prototype.constructor is %Temporal.ZonedDateTime%. +includes: [propertyHelper.js] +---*/ + +verifyProperty(Temporal.ZonedDateTime.prototype, "constructor", { + value: Temporal.ZonedDateTime, + writable: true, + enumerable: false, + configurable: true, +});