Intl.Collator: Add a test for search and sort in German.

Ref: https://github.com/tc39/ecma402/issues/256.
This commit is contained in:
Ms2ger 2018-10-25 14:23:09 +02:00 committed by Rick Waldron
parent 0d07ed06c0
commit e847c6ebb0
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
// Copyright 2018 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-initializecollator
description: Checks the behavior of search and sort in German.
includes: [compareArray.js]
locale: [de]
---*/
assert.compareArray(["AE", "\u00C4"].sort(new Intl.Collator("de", {usage: "sort"}).compare),
["\u00C4", "AE"],
"sort");
assert.compareArray(["AE", "\u00C4"].sort(new Intl.Collator("de", {usage: "search"}).compare),
["AE", "\u00C4"],
"search");