corrected an issue with set-alias on linux

This commit is contained in:
Zachary Folwick 2015-10-30 16:12:40 -07:00
parent 60aab90d31
commit cace8c5873

View file

@ -6,6 +6,7 @@
}
It "Should be able to have the same output between set-alias and the output of the function being aliased" {
set-alias -Name gd -Value Get-Date
gd | Should Be $(Get-Date)
}
@ -20,4 +21,4 @@
gd2 | Should Be $(gd)
}
}
}