photoprism/internal/maps/country_test.go

20 lines
329 B
Go
Raw Normal View History

package maps
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestCountryName(t *testing.T) {
t.Run("gb", func(t *testing.T) {
result := CountryName("gb")
assert.Equal(t, "United Kingdom", result)
})
t.Run("us", func(t *testing.T) {
result := CountryName("us")
assert.Equal(t, "USA", result)
})
}