minor logic change to Start-Sleep pester test

This commit is contained in:
Alex Jordan 2015-11-19 06:36:13 +00:00
parent 0147d108a2
commit 2665ee6e5d

View File

@ -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
}
}
}