Windows: Path integration tests (#26490)

These integration tests were used for testing the exact behaviour of
Ansible for YAML-style syntax and key=value syntax.

This includes fixes to win_shortcut (as `src` can be a URL too)
This commit is contained in:
Dag Wieers
2017-07-14 19:24:54 +02:00
committed by Matt Davis
parent 028ce1da15
commit 4a1864765b
3 changed files with 193 additions and 1 deletions

View File

@@ -228,7 +228,7 @@ Function Get-AnsibleParam($obj, $name, $default = $null, $resultobj = @{}, $fail
# Convert string type to real Powershell array
$value = $value.Split(",").Trim()
} else {
Fail-Json -obj $resultobj -message "Get-AnsibleParam: Parameter $name is not a YAML list."
Fail-Json -obj $resultobj -message "Get-AnsibleParam: Parameter '$name' is not a YAML list."
}
}
}