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 19:02:11 +0300
committertomocy <tomocy.dev@gmail.com>2019-04-23 19:02:11 +0300
commit7208a6e9f69634514c3713347db665791935da0a (patch)
treeb61a3e05a2af9f4e3f734154b85d883728416c7d
parentabd27f16c7b20e57d2dea7d66c26b954dcfe9d84 (diff)
add TestMonthsAbbreviated of ja_JP
-rw-r--r--ja_JP/ja_JP_test.go96
1 files changed, 48 insertions, 48 deletions
diff --git a/ja_JP/ja_JP_test.go b/ja_JP/ja_JP_test.go
index 1f9cd661..c4d5c6e2 100644
--- a/ja_JP/ja_JP_test.go
+++ b/ja_JP/ja_JP_test.go
@@ -460,54 +460,54 @@ func TestMonthsAbbreviated(t *testing.T) {
idx int
expected string
}{
- // {
- // idx: 1,
- // expected: "Jan",
- // },
- // {
- // idx: 2,
- // expected: "Feb",
- // },
- // {
- // idx: 3,
- // expected: "Mar",
- // },
- // {
- // idx: 4,
- // expected: "Apr",
- // },
- // {
- // idx: 5,
- // expected: "May",
- // },
- // {
- // idx: 6,
- // expected: "Jun",
- // },
- // {
- // idx: 7,
- // expected: "Jul",
- // },
- // {
- // idx: 8,
- // expected: "Aug",
- // },
- // {
- // idx: 9,
- // expected: "Sep",
- // },
- // {
- // idx: 10,
- // expected: "Oct",
- // },
- // {
- // idx: 11,
- // expected: "Nov",
- // },
- // {
- // idx: 12,
- // expected: "Dec",
- // },
+ {
+ 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 {