minor logic change to Start-Sleep pester test
This commit is contained in:
parent
0147d108a2
commit
2665ee6e5d
@ -3,12 +3,12 @@ Describe "Start-Sleep" {
|
||||
Context "Validate Start-Sleep works properly" {
|
||||
It "Should only sleep for at least 3 seconds"{
|
||||
$result = Measure-Command { Start-Sleep -s 3 }
|
||||
$result.Seconds | Should BeGreaterThan 3
|
||||
$result.Seconds | Should BeGreaterThan 2
|
||||
}
|
||||
|
||||
It "Should sleep for at least 3 seconds using the alias" {
|
||||
$result = Measure-Command { sleep -s 3 }
|
||||
$result.Seconds | Should BeGreaterThan 3
|
||||
$result.Seconds | Should BeGreaterThan 2
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user