mirror of https://github.com/tc39/test262.git
15 lines
606 B
JavaScript
15 lines
606 B
JavaScript
// Copyright 2016 Mozilla Corporation. All rights reserved.
|
|
// This code is governed by the license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-Intl.PluralRules.supportedLocalesOf
|
|
description: Tests that Intl.PluralRules.supportedLocalesOf.name is "supportedLocalesOf"
|
|
author: Zibi Braniecki
|
|
includes: [propertyHelper.js]
|
|
---*/
|
|
assert.sameValue(Intl.PluralRules.supportedLocalesOf.name, "supportedLocalesOf");
|
|
|
|
verifyNotEnumerable(Intl.PluralRules.supportedLocalesOf, "name");
|
|
verifyNotWritable(Intl.PluralRules.supportedLocalesOf, "name");
|
|
verifyConfigurable(Intl.PluralRules.supportedLocalesOf, "name");
|