summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nicksnyder/go-i18n/i18n/language/plural_test.go
blob: 6336d29b20d0851438cbb67268af82510ade91f7 (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
25
26
27
28
package language

import (
	"testing"
)

func TestNewPlural(t *testing.T) {
	tests := []struct {
		src    string
		plural Plural
		err    bool
	}{
		{"zero", Zero, false},
		{"one", One, false},
		{"two", Two, false},
		{"few", Few, false},
		{"many", Many, false},
		{"other", Other, false},
		{"asdf", Invalid, true},
	}
	for _, test := range tests {
		plural, err := NewPlural(test.src)
		wrongErr := (err != nil && !test.err) || (err == nil && test.err)
		if plural != test.plural || wrongErr {
			t.Errorf("NewPlural(%#v) returned %#v,%#v; expected %#v", test.src, plural, err, test.plural)
		}
	}
}