vendor: Fix Humanize for multi-byte runes
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 28 Nov 2017 20:16:01 +0000 (21:16 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 28 Nov 2017 20:16:01 +0000 (21:16 +0100)
Fixes #4133

Gopkg.lock
tpl/inflect/inflect_test.go

index 2062d40cc5a15cfae28730121559d1f75066b86e..4233d927872988c1e5074842e1cc605e05d79708 100644 (file)
   branch = "master"
   name = "github.com/markbates/inflect"
   packages = ["."]
-  revision = "ea17041f342f81e8849284b87bc3db1a6fc596bb"
+  revision = "54ffb37507cd7d2ccd4768855e84f9ff6c4352b6"
 
 [[projects]]
   name = "github.com/miekg/mmark"
index a2146a838bb153886bc7b414a75a8a8adaf24e15..a94a2021883438d06184badf8b3f4ecae6b98cd0 100644 (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"},