Skip to content

Commit

Permalink
Merge pull request #812 from PowerShell/andschwa/tests
Browse files Browse the repository at this point in the history
Remove alias tests for Write-Output
  • Loading branch information
andyleejordan committed Apr 11, 2016
2 parents bfca886 + 735a702 commit 2629fff
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions test/powershell/Write-Output.Tests.ps1
Expand Up @@ -35,22 +35,6 @@ Describe "Write-Output" {
}
}

Context "Alias Tests" {
It "Should have the same result between the echo alias and the cmdlet" {
$alias = echo -InputObject $testString
$cmdlet = Write-Output -InputObject $testString

$alias | Should Be $cmdlet
}

It "Should have the same result between the write alias and the cmdlet" {
$alias = write -InputObject $testString
$cmdlet = Write-Output -InputObject $testString

$alias | Should Be $cmdlet
}
}

Context "Enumerate Objects" {
$enumerationObject = @(1,2,3)
It "Should see individual objects when not using the NoEnumerate switch" {
Expand Down

0 comments on commit 2629fff

Please sign in to comment.