changed it statement to accurately reflect test

This commit is contained in:
Zachary Folwick 2015-08-06 11:31:30 -07:00
parent 052165d15a
commit b0d7a2153e

View file

@ -34,14 +34,12 @@ Describe "Test-Format-List" {
{ $testCommand | fl -Property Name,BasePriority } | Should Not Throw
}
It "Should not show only the requested props" {
It "Should not show anything other than the requested props" {
$testCommand = Get-Process
( $testCommand | Format-List | Out-String).Contains("CPU") | Should Be $true
( $testCommand | Format-List -Property Name | Out-String).Contains("CPU") | Should Be $false
( $testCommand | fl | Out-String).Contains("CPU") | Should Be $true
( $testCommand | fl -Property Name | Out-String).Contains("CPU") | Should Be $false
}
It "Should be able to take input without piping objects to it" {