mirror of
https://github.com/akvorado/akvorado.git
synced 2025-12-11 22:14:02 +01:00
23 lines
400 B
Go
23 lines
400 B
Go
package helpers
|
|
|
|
import "testing"
|
|
|
|
func TestCapitalize(t *testing.T) {
|
|
cases := []struct {
|
|
In string
|
|
Out string
|
|
}{
|
|
{"", ""},
|
|
{"Hello", "Hello"},
|
|
{"bye", "Bye"},
|
|
{" nothing", " nothing"},
|
|
{"école", "École"},
|
|
}
|
|
for _, tc := range cases {
|
|
got := Capitalize(tc.In)
|
|
if diff := Diff(got, tc.Out); diff != "" {
|
|
t.Errorf("Capitalize(%q) (-got, +want):\n%s", tc.In, diff)
|
|
}
|
|
}
|
|
}
|