Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions textcase_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ func TestTextCases(t *testing.T) {
{in: "ax___by", camel: "axBy", snake: "ax_by"},
{in: "someText", camel: "someText", snake: "some_text"},
{in: "someTEXT", camel: "someText", snake: "some_text"},
{in: "*postgresql.JSONBConverter", camel: "postgresqlJsonbConverter", snake: "postgresql_jsonb_converter"},
{in: "NeXT", camel: "neXt", snake: "ne_xt"},
{in: "Add updated_at to users table", camel: "addUpdatedAtToUsersTable", snake: "add_updated_at_to_users_table"},
{in: "Hey, this TEXT will have to obey some rules!!", camel: "heyThisTextWillHaveToObeySomeRules", snake: "hey_this_text_will_have_to_obey_some_rules"},
Expand Down