Added function to convert camelCase to snake_case for powershell (#26203)

* Added camel case to snake case converters

* removed uneeded shebang

* renamed util to remove PowerShell from the name
This commit is contained in:
Jordan Borean 2017-07-20 09:57:05 +10:00 committed by Matt Davis
parent 33a2d72290
commit a260063ffd
3 changed files with 141 additions and 0 deletions

View file

@ -31,3 +31,11 @@
that:
- bogus_utils | failed
- bogus_utils.msg | search("Could not find")
- name: call module with camel conversion tests
camel_conversion_test:
register: camel_conversion
- assert:
that:
- camel_conversion.data == 'success'