BufPool Singular and Plural

This commit is contained in:
Patrick O'brien 2016-08-13 23:39:13 +10:00
parent e4800f9af8
commit ddb3aff125
2 changed files with 38 additions and 4 deletions

View file

@ -124,6 +124,7 @@ func TestSingular(t *testing.T) {
{"hello_people", "hello_person"},
{"hello_person", "hello_person"},
{"friends", "friend"},
{"hello_there_people", "hello_there_person"},
}
for i, test := range tests {
@ -143,6 +144,7 @@ func TestPlural(t *testing.T) {
{"hello_person", "hello_people"},
{"friend", "friends"},
{"friends", "friends"},
{"hello_there_person", "hello_there_people"},
}
for i, test := range tests {