summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/NumberFormat/prototype/format/unit-ko-KR.js
blob: a7f8e7a908c5f330bfe76ca966db37a542b5d7a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Copyright 2019 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-intl.numberformat.prototype.format
description: Checks handling of the unit style.
locale: [ko-KR]
features: [Intl.NumberFormat-unified]
---*/


const tests = [
  [
    -987,
    {
      "short": "-987km/h",
      "narrow": "-987km/h",
      "long": "시속 -987킬로미터",
    }
  ],
  [
    -0.001,
    {
      "short": "-0.001km/h",
      "narrow": "-0.001km/h",
      "long": "시속 -0.001킬로미터",
    }
  ],
  [
    -0,
    {
      "short": "-0km/h",
      "narrow": "-0km/h",
      "long": "시속 -0킬로미터",
    }
  ],
  [
    0,
    {
      "short": "0km/h",
      "narrow": "0km/h",
      "long": "시속 0킬로미터",
    }
  ],
  [
    0.001,
    {
      "short": "0.001km/h",
      "narrow": "0.001km/h",
      "long": "시속 0.001킬로미터",
    }
  ],
  [
    987,
    {
      "short": "987km/h",
      "narrow": "987km/h",
      "long": "시속 987킬로미터",
    }
  ],
];

for (const [number, expectedData] of tests) {
  for (const [unitDisplay, expected] of Object.entries(expectedData)) {
    const nf = new Intl.NumberFormat("ko-KR", { style: "unit", unit: "kilometer-per-hour", unitDisplay });
    assert.sameValue(nf.format(number), expected);
  }
}


reportCompare(0, 0);