Use verifyProperty and remove dup check (#2146)

This commit is contained in:
Frank Yung-Fong Tang 2019-05-02 16:49:40 -07:00 committed by Leo Balter
parent cc83d1d3de
commit d47749e84d
6 changed files with 24 additions and 34 deletions

View File

@ -6,9 +6,6 @@ description: Intl.DateTimeFormat.prototype.formatRange.length.
includes: [propertyHelper.js]
features: [Intl.DateTimeFormat-formatRange]
---*/
assert.sameValue(Intl.DateTimeFormat.prototype.formatRange.length, 2);
verifyProperty(Intl.DateTimeFormat.prototype.formatRange, 'length', {
value: 2,
enumerable: false,

View File

@ -6,10 +6,9 @@ description: Intl.DateTimeFormat.prototype.formatRange.name value and descriptor
includes: [propertyHelper.js]
features: [Intl.DateTimeFormat-formatRange]
---*/
assert.sameValue(Intl.DateTimeFormat.prototype.formatRange.name, 'formatRange',
'The value of `Intl.DateTimeFormat.prototype.formatRange.name` is `"formatRange"`'
);
verifyNotEnumerable(Intl.DateTimeFormat.prototype.formatRange, 'name');
verifyNotWritable(Intl.DateTimeFormat.prototype.formatRange, 'name');
verifyConfigurable(Intl.DateTimeFormat.prototype.formatRange, 'name');
verifyProperty(Intl.DateTimeFormat.prototype.formatRange, 'name', {
value: 'formatRange',
enumerable: false,
writable: false,
configurable: true,
});

View File

@ -6,9 +6,6 @@ description: Intl.DateTimeFormat.prototype.formatRangeToParts.length.
includes: [propertyHelper.js]
features: [Intl.DateTimeFormat-formatRange]
---*/
assert.sameValue(Intl.DateTimeFormat.prototype.formatRangeToParts.length, 2);
verifyProperty(Intl.DateTimeFormat.prototype.formatRangeToParts, 'length', {
value: 2,
enumerable: false,

View File

@ -6,10 +6,9 @@ description: Intl.DateTimeFormat.prototype.formatRangeToParts.name value and des
includes: [propertyHelper.js]
features: [Intl.DateTimeFormat-formatRange]
---*/
assert.sameValue(Intl.DateTimeFormat.prototype.formatRangeToParts.name, 'formatRangeToParts',
'The value of `Intl.DateTimeFormat.prototype.formatRangeToParts.name` is `"formatRangeToParts"`'
);
verifyNotEnumerable(Intl.DateTimeFormat.prototype.formatRangeToParts, 'name');
verifyNotWritable(Intl.DateTimeFormat.prototype.formatRangeToParts, 'name');
verifyConfigurable(Intl.DateTimeFormat.prototype.formatRangeToParts, 'name');
verifyProperty(Intl.DateTimeFormat.prototype.formatRangeToParts, 'name', {
value: 'formatRangeToParts',
enumerable: false,
writable: false,
configurable: true,
});

View File

@ -5,9 +5,9 @@
description: Intl.DateTimeFormat.prototype.formatToParts.length.
includes: [propertyHelper.js]
---*/
assert.sameValue(Intl.DateTimeFormat.prototype.formatToParts.length, 1);
verifyNotEnumerable(Intl.DateTimeFormat.prototype.formatToParts, "length");
verifyNotWritable(Intl.DateTimeFormat.prototype.formatToParts, "length");
verifyConfigurable(Intl.DateTimeFormat.prototype.formatToParts, "length");
verifyProperty(Intl.DateTimeFormat.prototype.formatToParts, 'length', {
value: 1,
enumerable: false,
writable: false,
configurable: true,
});

View File

@ -5,11 +5,9 @@
description: Intl.DateTimeFormat.prototype.formatToParts.name value and descriptor.
includes: [propertyHelper.js]
---*/
assert.sameValue(Intl.DateTimeFormat.prototype.formatToParts.name, 'formatToParts',
'The value of `Intl.DateTimeFormat.prototype.formatToParts.name` is `"formatToParts"`'
);
verifyNotEnumerable(Intl.DateTimeFormat.prototype.formatToParts, 'name');
verifyNotWritable(Intl.DateTimeFormat.prototype.formatToParts, 'name');
verifyConfigurable(Intl.DateTimeFormat.prototype.formatToParts, 'name');
verifyProperty(Intl.DateTimeFormat.prototype.formatToParts, 'name', {
value: 'formatToParts',
enumerable: false,
writable: false,
configurable: true,
});