miniflux-v2/internal/locale/locale_test.go

24 lines
548 B
Go
Raw Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package locale // import "miniflux.app/v2/internal/locale"
2017-11-20 06:10:04 +01:00
import "testing"
func TestAvailableLanguages(t *testing.T) {
results := AvailableLanguages()
for k, v := range results {
if k == "" {
t.Errorf(`Empty language key detected`)
}
2017-11-20 06:10:04 +01:00
if v == "" {
t.Errorf(`Empty language value detected`)
}
2017-11-20 06:10:04 +01:00
}
if _, found := results["en_US"]; !found {
t.Errorf(`We must have at least the default language (en_US)`)
2017-11-20 06:10:04 +01:00
}
}