PowerShell/test/powershell/Start-Sleep.Tests.ps1
2016-03-04 14:52:27 -08:00

15 lines
406 B
PowerShell

Describe "Start-Sleep" {
Context "Validate Start-Sleep works properly" {
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 1 second using the alias" {
$result = Measure-Command { sleep -s 1 }
$result.TotalSeconds | Should BeGreaterThan 0.25
}
}
}