ansible/test/integration/targets/win_pester/files/test04.test.ps1
PRASOON KARUNAN V a20afb5822 Add support for test script parameters in win_pester (#58790)
* add parameter list argument

* add tests

* fix test and add doc

* correct test file

* fix typo

* fix tests

* fix typo in file name

* correct file name reverting the previous commit

* correct property name

* add checkmode message

* changes as per review comments

* variable casing and other review comment changes

* define $test_parameters_check_mode_msg variable
2019-07-23 05:46:26 +10:00

18 lines
492 B
PowerShell

Param(
$Service,
$Process
)
Describe "Process should exist" {
it "Process $Process should be running" -Skip:([String]::IsNullOrEmpty($Process)) {
Get-Process -Name $Process -ErrorAction SilentlyContinue | Should Not BeNullOrEmpty
}
}
Describe "Service should exist" -tag Service {
it "Service $Service should exist" -Skip:([String]::IsNullOrEmpty($Service)) {
Get-Service -Name $Service -ErrorAction SilentlyContinue | Should Not BeNullOrEmpty
}
}