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:48:41 +0300
committertomocy <tomocy.dev@gmail.com>2019-04-23 18:48:41 +0300
commitaf5c816d4df421fabad4b95090afe354df8cf41f (patch)
tree1561ed38f61fd15b3a5b94a6d16311b106ade5c3
parent7543f375466a5f303345d8be9ef30a0dcb93d077 (diff)
add TestDaysWide of ja
-rw-r--r--ja/ja_test.go56
1 files changed, 28 insertions, 28 deletions
diff --git a/ja/ja_test.go b/ja/ja_test.go
index b63af92f..6b3697eb 100644
--- a/ja/ja_test.go
+++ b/ja/ja_test.go
@@ -406,34 +406,34 @@ func TestDaysWide(t *testing.T) {
idx int
expected string
}{
- // {
- // idx: 0,
- // expected: "Sunday",
- // },
- // {
- // idx: 1,
- // expected: "Monday",
- // },
- // {
- // idx: 2,
- // expected: "Tuesday",
- // },
- // {
- // idx: 3,
- // expected: "Wednesday",
- // },
- // {
- // idx: 4,
- // expected: "Thursday",
- // },
- // {
- // idx: 5,
- // expected: "Friday",
- // },
- // {
- // idx: 6,
- // expected: "Saturday",
- // },
+ {
+ idx: 0,
+ expected: "日曜日",
+ },
+ {
+ idx: 1,
+ expected: "月曜日",
+ },
+ {
+ idx: 2,
+ expected: "火曜日",
+ },
+ {
+ idx: 3,
+ expected: "水曜日",
+ },
+ {
+ idx: 4,
+ expected: "木曜日",
+ },
+ {
+ idx: 5,
+ expected: "金曜日",
+ },
+ {
+ idx: 6,
+ expected: "土曜日",
+ },
}
for _, tt := range tests {