From e847c6ebb0cc4434cffa0d54a6463551c7754bfe Mon Sep 17 00:00:00 2001 From: Ms2ger <Ms2ger@igalia.com> Date: Thu, 25 Oct 2018 14:23:09 +0200 Subject: [PATCH] Intl.Collator: Add a test for search and sort in German. Ref: https://github.com/tc39/ecma402/issues/256. --- test/intl402/Collator/usage-de.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/intl402/Collator/usage-de.js diff --git a/test/intl402/Collator/usage-de.js b/test/intl402/Collator/usage-de.js new file mode 100644 index 0000000000..6af9f050b7 --- /dev/null +++ b/test/intl402/Collator/usage-de.js @@ -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"); -- GitLab