Skip to content

Commit

Permalink
add + test
Browse files Browse the repository at this point in the history
  • Loading branch information
Camila Macedo committed Apr 17, 2020
1 parent 52c1d3c commit 2aef71f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/ansible/paramconv/paramconv_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ func TestToCamel(t *testing.T) {
name: "should convert to Camel when has numbers",
args: args{"_app_test_k8s"},
want: "AppTestK8s",
},{
name: "should convert to Camel when has numbers and _",
args: args{"var_k8s"},
want: "varK8s",
},
}
for _, tt := range tests {
Expand Down

0 comments on commit 2aef71f

Please sign in to comment.