mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-03 07:41:30 -07:00
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:
parent
33a2d72290
commit
a260063ffd
3 changed files with 141 additions and 0 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue