1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/win_module_utils/module_utils/Ansible.ModuleUtils.Recursive3.psm1

20 lines
336 B
PowerShell

#Requires -Module Ansible.ModuleUtils.Recursive2
#Requires -Version 3.0
Function Get-Test3 {
<#
.SYNOPSIS
Test function
#>
return "Get-Test3: 2: $(Get-Test2)"
}
Function Get-NewTest3 {
<#
.SYNOPSIS
Test function
#>
return "Get-NewTest3"
}
Export-ModuleMember -Function Get-Test3, Get-NewTest3