24 lines
583 B
Go
24 lines
583 B
Go
// Copyright 2018 Frédéric Guillot. All rights reserved.
|
|
// Use of this source code is governed by the Apache 2.0
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package locale // import "miniflux.app/locale"
|
|
|
|
import "testing"
|
|
|
|
func TestAvailableLanguages(t *testing.T) {
|
|
results := AvailableLanguages()
|
|
for k, v := range results {
|
|
if k == "" {
|
|
t.Errorf(`Empty language key detected`)
|
|
}
|
|
|
|
if v == "" {
|
|
t.Errorf(`Empty language value detected`)
|
|
}
|
|
}
|
|
|
|
if _, found := results["en_US"]; !found {
|
|
t.Errorf(`We must have at least the default language (en_US)`)
|
|
}
|
|
}
|