add test for mixed case

This commit is contained in:
s.kamardin
2016-04-01 15:00:19 +03:00
parent 7bbe88f99f
commit 1abb7f5e21
+2
View File
@@ -16,6 +16,8 @@ func TestCamelToSnake(t *testing.T) {
{"SomeHTTPStuff", "some_http_stuff"},
{"WriteJSON", "write_json"},
{"HTTP2Server", "http2_server"},
{"Some_Mixed_Case", "some_mixed_case"},
{"do_nothing", "do_nothing"},
{"JSONHTTPRPCServer", "jsonhttprpc_server"}, // nothing can be done here without a dictionary
} {