function name change

This commit is contained in:
Суханов Данила 2025-02-06 13:20:14 +03:00
parent 5742004645
commit 6319a44ad6
2 changed files with 7 additions and 8 deletions

View file

@ -289,10 +289,9 @@ func GetCurrencySymbol(code string) string {
return strings.ToUpper(code)
}
// GetCurrencySymbolPosition returns currency symbol position.
// true - left-hand side,
// (default) false - right-hand side.
func GetCurrencySymbolPosition(code string) bool {
// IsLHSCurrency determines whether the currency is left-hand side.
// It returns false if currency symbol cannot be found.
func IsLHSCurrency(code string) bool {
return slices.Contains(LHSCurrencies(), strings.ToLower(code))
}

View file

@ -321,17 +321,17 @@ func TestUtils_GetCurrencySymbol(t *testing.T) {
assert.Equal(t, "MXN", GetCurrencySymbol("mxn"))
}
func TestUtils_GetCurrencySymbolPosition(t *testing.T) {
func TestUtils_IsLHSCurrency(t *testing.T) {
for code := range DefaultCurrencies() {
if slices.Contains(LHSCurrencies(), strings.ToLower(code)) {
assert.True(t, GetCurrencySymbolPosition(code))
assert.True(t, IsLHSCurrency(code))
continue
}
assert.False(t, GetCurrencySymbolPosition(code))
assert.False(t, IsLHSCurrency(code))
}
assert.False(t, GetCurrencySymbolPosition("extra_code"))
assert.False(t, IsLHSCurrency("extra_code"))
}
func TestUtils_ReplaceMarkdownSymbols(t *testing.T) {