Merge pull request #640 from PowerShell/dev/jumping

Fixed Pester Get-Location test
This commit is contained in:
Andy Schwartzmeyer 2016-03-08 01:06:18 -08:00
commit 5336083921

View file

@ -1,6 +1,7 @@
Describe "Get-Location" {
$currentDirectory=[System.IO.Directory]::GetCurrentDirectory()
BeforeEach {
pushd $env:HOME
pushd $currentDirectory
}
AfterEach {
@ -8,7 +9,8 @@ Describe "Get-Location" {
}
It "Should list the output of the current working directory" {
(Get-Location).Path | Should Be $env:HOME
(Get-Location).Path | Should Be $currentDirectory
}
It "Should do exactly the same thing as its alias" {