mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
913 B
32 lines
913 B
// Copyright 2023 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package translation |
|
|
|
import ( |
|
"testing" |
|
|
|
"code.gitea.io/gitea/modules/translation/i18n" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func TestPrettyNumber(t *testing.T) { |
|
// TODO: make this package friendly to testing |
|
|
|
i18n.ResetDefaultLocales() |
|
|
|
allLangMap = make(map[string]*LangType) |
|
allLangMap["id-ID"] = &LangType{Lang: "id-ID", Name: "Bahasa Indonesia"} |
|
|
|
l := NewLocale("id-ID") |
|
assert.Equal(t, "1.000.000", l.PrettyNumber(1000000)) |
|
assert.Equal(t, "1.000.000,1", l.PrettyNumber(1000000.1)) |
|
assert.Equal(t, "1.000.000", l.PrettyNumber("1000000")) |
|
assert.Equal(t, "1.000.000", l.PrettyNumber("1000000.0")) |
|
assert.Equal(t, "1.000.000,1", l.PrettyNumber("1000000.1")) |
|
|
|
l = NewLocale("nosuch") |
|
assert.Equal(t, "1,000,000", l.PrettyNumber(1000000)) |
|
assert.Equal(t, "1,000,000.1", l.PrettyNumber(1000000.1)) |
|
}
|
|
|