Skip to content

Commit 6c4ce44

Browse files
authored
Additional test case for camel-case
1 parent 7faaf59 commit 6c4ce44

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

camel_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ func TestUpperCamelCase(t *testing.T) {
2525
"skip---many-dashes": "SkipManyDashes",
2626
"skip___many_underline": "SkipManyUnderline",
2727
"XRequestId": "XRequestId",
28+
"HTTPStatusCode": "HttpStatusCode",
2829
}
2930

3031
for in, out := range data {
@@ -49,6 +50,7 @@ func TestLowerCamelCase(t *testing.T) {
4950
"skip---many-dashes": "skipManyDashes",
5051
"skip___many_underline": "skipManyUnderline",
5152
"XRequestId": "xRequestId",
53+
"HTTPStatusCode": "httpStatusCode",
5254
}
5355

5456
for in, out := range data {

0 commit comments

Comments
 (0)