Merge pull request #1576 from Ms2ger/pluralCategories

Add a test for pluralrules.resolvedOptions().pluralCategories.
This commit is contained in:
Rick Waldron 2018-05-29 14:08:41 -04:00 committed by GitHub
commit 92003a3e52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
// Copyright 2018 Igalia S.L. All rights reserved.
// This code is governed by the license found in the LICENSE file.
/*---
esid: sec-Intl.PluralRules.prototype.resolvedOptions
description: >
Tests that Intl.PluralRules.prototype.resolvedOptions creates a new array
for the pluralCategories property on every call.
includes: [testIntl.js, propertyHelper.js, compareArray.js]
---*/
const allowedValues = ["zero", "one", "two", "few", "many", "other"];
const pluralrules = new Intl.PluralRules();
const options1 = pluralrules.resolvedOptions();
const options2 = pluralrules.resolvedOptions();
assert.notSameValue(options1.pluralCategories, options2.pluralCategories, "Should have different arrays");
assert.compareArray(options1.pluralCategories, options2.pluralCategories, "Arrays should have same values");
for (const category of options1.pluralCategories) {
assert(allowedValues.includes(category), `Found ${category}, expected one of ${allowedValues}`);
}
verifyProperty(options1, "pluralCategories", {
writable: true,
enumerable: true,
configurable: true,
});