mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
b80853de90
Updates #9687
49 lines
1 KiB
Go
49 lines
1 KiB
Go
package inflect
|
|
|
|
import (
|
|
"testing"
|
|
|
|
qt "github.com/frankban/quicktest"
|
|
)
|
|
|
|
func TestInflect(t *testing.T) {
|
|
t.Parallel()
|
|
c := qt.New(t)
|
|
|
|
ns := New()
|
|
|
|
for _, test := range []struct {
|
|
fn func(i any) (string, error)
|
|
in any
|
|
expect any
|
|
}{
|
|
{ns.Humanize, "MyCamel", "My camel"},
|
|
{ns.Humanize, "óbito", "Óbito"},
|
|
{ns.Humanize, "", ""},
|
|
{ns.Humanize, "103", "103rd"},
|
|
{ns.Humanize, "41", "41st"},
|
|
{ns.Humanize, 103, "103rd"},
|
|
{ns.Humanize, int64(92), "92nd"},
|
|
{ns.Humanize, "5.5", "5.5"},
|
|
{ns.Humanize, t, false},
|
|
{ns.Humanize, "this is a TEST", "This is a test"},
|
|
{ns.Humanize, "my-first-Post", "My first post"},
|
|
{ns.Pluralize, "cat", "cats"},
|
|
{ns.Pluralize, "", ""},
|
|
{ns.Pluralize, t, false},
|
|
{ns.Singularize, "cats", "cat"},
|
|
{ns.Singularize, "", ""},
|
|
{ns.Singularize, t, false},
|
|
} {
|
|
|
|
result, err := test.fn(test.in)
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
|
continue
|
|
}
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
c.Assert(result, qt.Equals, test.expect)
|
|
}
|
|
}
|