Turns out we don't need lowerCamelCase()

pull/154/head
Vojtech Vitek 2019-03-05 22:01:42 -05:00
parent 81965805fd
commit 700850a450
2 changed files with 4 additions and 12 deletions

View File

@ -58,14 +58,6 @@ func camelCase(str string) string {
return b.String()
}
func lowerCamelCase(str string) string {
str = camelCase(str)
if len(str) == 0 {
return str
}
return strings.ToLower(str[:1]) + str[1:]
}
func snakeCase(str string) string {
var b bytes.Buffer

View File

@ -10,13 +10,13 @@ func TestCamelSnake(t *testing.T) {
camel string
snake string
}{
{in: "Add updated_at to users table", camel: "addUpdatedAtToUsersTable", snake: "add_updated_at_to_users_table"},
{in: "$()&^%(_--crazy__--input$)", camel: "crazyInput", snake: "crazy_input"},
{in: "Add updated_at to users table", camel: "AddUpdatedAtToUsersTable", snake: "add_updated_at_to_users_table"},
{in: "$()&^%(_--crazy__--input$)", camel: "CrazyInput", snake: "crazy_input"},
}
for _, test := range tt {
if got := lowerCamelCase(test.in); got != test.camel {
t.Errorf("unexpected lowerCamelCase for input(%q), got %q, want %q", test.in, got, test.camel)
if got := camelCase(test.in); got != test.camel {
t.Errorf("unexpected CamelCase for input(%q), got %q, want %q", test.in, got, test.camel)
}
if got := snakeCase(test.in); got != test.snake {
t.Errorf("unexpected snake_case for input(%q), got %q, want %q", test.in, got, test.snake)