vendor: Fix Humanize for multi-byte runes

Fixes #4133
This commit is contained in:
Bjørn Erik Pedersen
2017-11-28 21:16:01 +01:00
parent 7989210120
commit e7652180a1
2 changed files with 2 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ func TestInflect(t *testing.T) {
expect interface{}
}{
{ns.Humanize, "MyCamel", "My camel"},
{ns.Humanize, "óbito", "Óbito"},
{ns.Humanize, "", ""},
{ns.Humanize, "103", "103rd"},
{ns.Humanize, "41", "41st"},