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:50:06 +0300
committertomocy <tomocy.dev@gmail.com>2019-04-23 18:50:06 +0300
commit7518dbd8a348701c1edd67358edea64d4a6fbb91 (patch)
treef25f475f3ae9fe14088adb4ffcc10532ac348918
parentaf5c816d4df421fabad4b95090afe354df8cf41f (diff)
add TestMonthsAbbreviated 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 6b3697eb..44d92511 100644
--- a/ja/ja_test.go
+++ b/ja/ja_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 {