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:52:20 +0300
committertomocy <tomocy.dev@gmail.com>2019-04-23 18:52:20 +0300
commita58ee420b54c3916aa3c88d48fa824637a51ae23 (patch)
tree4d30cee37143d85d20993ee9d735d464a046c9e9
parentbba24808277662188298607c131fa07d24e14cf3 (diff)
add TestMonthsWide 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 51c23eea..99828cdf 100644
--- a/ja/ja_test.go
+++ b/ja/ja_test.go
@@ -608,54 +608,54 @@ func TestMonthsWide(t *testing.T) {
idx int
expected string
}{
- // {
- // idx: 1,
- // expected: "January",
- // },
- // {
- // idx: 2,
- // expected: "February",
- // },
- // {
- // idx: 3,
- // expected: "March",
- // },
- // {
- // idx: 4,
- // expected: "April",
- // },
- // {
- // idx: 5,
- // expected: "May",
- // },
- // {
- // idx: 6,
- // expected: "June",
- // },
- // {
- // idx: 7,
- // expected: "July",
- // },
- // {
- // idx: 8,
- // expected: "August",
- // },
- // {
- // idx: 9,
- // expected: "September",
- // },
- // {
- // idx: 10,
- // expected: "October",
- // },
- // {
- // idx: 11,
- // expected: "November",
- // },
- // {
- // idx: 12,
- // expected: "December",
- // },
+ {
+ 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 {