Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortomocy <tomocy.dev@gmail.com>2019-04-23 18:51:22 +0300
committertomocy <tomocy.dev@gmail.com>2019-04-23 18:51:22 +0300
commitbba24808277662188298607c131fa07d24e14cf3 (patch)
tree81d56ba6bd656a62338dbfe5b4dce2766b4c3222
parent7518dbd8a348701c1edd67358edea64d4a6fbb91 (diff)
add TestMonthsNarrow of ja
-rw-r--r--ja/ja_test.go96
1 files changed, 48 insertions, 48 deletions
diff --git a/ja/ja_test.go b/ja/ja_test.go
index 44d92511..51c23eea 100644
--- a/ja/ja_test.go
+++ b/ja/ja_test.go
@@ -534,54 +534,54 @@ func TestMonthsNarrow(t *testing.T) {
idx int
expected string
}{
- // {
- // idx: 1,
- // expected: "J",
- // },
- // {
- // idx: 2,
- // expected: "F",
- // },
- // {
- // idx: 3,
- // expected: "M",
- // },
- // {
- // idx: 4,
- // expected: "A",
- // },
- // {
- // idx: 5,
- // expected: "M",
- // },
- // {
- // idx: 6,
- // expected: "J",
- // },
- // {
- // idx: 7,
- // expected: "J",
- // },
- // {
- // idx: 8,
- // expected: "A",
- // },
- // {
- // idx: 9,
- // expected: "S",
- // },
- // {
- // idx: 10,
- // expected: "O",
- // },
- // {
- // idx: 11,
- // expected: "N",
- // },
- // {
- // idx: 12,
- // expected: "D",
- // },
+ {
+ idx: 1,
+ expected: "1",
+ },
+ {
+ idx: 2,
+ expected: "2",
+ },
+ {
+ idx: 3,
+ expected: "3",
+ },
+ {
+ idx: 4,
+ expected: "4",
+ },
+ {
+ idx: 5,
+ expected: "5",
+ },
+ {
+ idx: 6,
+ expected: "6",
+ },
+ {
+ idx: 7,
+ expected: "7",
+ },
+ {
+ idx: 8,
+ expected: "8",
+ },
+ {
+ idx: 9,
+ expected: "9",
+ },
+ {
+ idx: 10,
+ expected: "10",
+ },
+ {
+ idx: 11,
+ expected: "11",
+ },
+ {
+ idx: 12,
+ expected: "12",
+ },
}
for _, tt := range tests {