Temporal: Add tests for prototype.constructor.

This commit is contained in:
Ms2ger 2022-05-25 11:51:40 +02:00
parent ed5ada3e13
commit f7b626133d
10 changed files with 160 additions and 0 deletions

View File

@ -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,
});

View File

@ -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,
});

View File

@ -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,
});

View File

@ -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,
});

View File

@ -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,
});

View File

@ -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,
});

View File

@ -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,
});

View File

@ -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,
});

View File

@ -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,
});

View File

@ -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,
});