mirror of
https://github.com/retailcrm/mg-transport-core.git
synced 2025-04-04 05:43:33 +03:00
function name change
This commit is contained in:
parent
5742004645
commit
6319a44ad6
2 changed files with 7 additions and 8 deletions
|
@ -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))
|
||||
}
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue