aboutsummaryrefslogtreecommitdiffhomepage
path: root/locale/locale_test.go
blob: 9f49b601f78dc4c8ddde16262593ef646a354074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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)`)
	}
}