6 lines
171 B
PowerShell
6 lines
171 B
PowerShell
#Requires -Modules Pester
|
|
function defParam($command, $name) {
|
|
It "Has a -$name parameter" {
|
|
$command.Parameters.Item($name) | Should Not BeNullOrEmpty
|
|
}
|
|
} |