mirror of https://github.com/pressly/goose.git
28 lines
688 B
Go
28 lines
688 B
Go
package goose
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCamelSnake(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tt := []struct {
|
|
in string
|
|
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"},
|
|
}
|
|
|
|
for _, test := range tt {
|
|
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)
|
|
}
|
|
}
|
|
}
|