iancoleman / strcase

A golang package for converting to snake_case or CamelCase
MIT License
1.01k stars 106 forks source link

Add more tests #7

Open LeKovr opened 6 years ago

LeKovr commented 6 years ago

There are some additional tests for ToSnake at this gist Would you like to add these:

        []string{"ILoveGolangAndJSONSoMuch", "i_love_golang_and_json_so_much"},
        []string{"ILoveJSON", "i_love_json"},
        []string{"JSON", "json"},
        []string{"Camel1", "camel1"},
        []string{"BIGCase1", "big_case1"},
        []string{"BC1", "b_c1"},
        []string{"ПриветМир", "привет_мир"},

?