mirror of https://github.com/pressly/goose.git
Turns out we don't need lowerCamelCase()
parent
81965805fd
commit
700850a450
|
@ -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
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue