summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/win_pester/files/test04.tests.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/win_pester/files/test04.tests.ps1')
-rw-r--r--test/integration/targets/win_pester/files/test04.tests.ps118
1 files changed, 0 insertions, 18 deletions
diff --git a/test/integration/targets/win_pester/files/test04.tests.ps1 b/test/integration/targets/win_pester/files/test04.tests.ps1
deleted file mode 100644
index 07d1bd43c5..0000000000
--- a/test/integration/targets/win_pester/files/test04.tests.ps1
+++ /dev/null
@@ -1,18 +0,0 @@
-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
- }
-}