Fix Start-Sleep Pester tests
This commit is contained in:
parent
27f38f161c
commit
9402c68c57
@ -1,14 +1,14 @@
|
||||
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 2
|
||||
}
|
||||
It "Should only sleep for at least 1 second" {
|
||||
$result = Measure-Command { Start-Sleep -s 1 }
|
||||
$result.TotalSeconds | Should BeGreaterThan 0.25
|
||||
}
|
||||
|
||||
It "Should sleep for at least 3 seconds using the alias" {
|
||||
$result = Measure-Command { sleep -s 3 }
|
||||
$result.Seconds | Should BeGreaterThan 2
|
||||
}
|
||||
It "Should sleep for at least 1 second using the alias" {
|
||||
$result = Measure-Command { sleep -s 1 }
|
||||
$result.TotalSeconds | Should BeGreaterThan 0.25
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user