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

18 lines
322 B
PowerShell

Describe "Get-Location" {
BeforeEach {
pushd $env:HOME
}
AfterEach {
popd
}
It "Should list the output of the current working directory" {
(Get-Location).Path | Should Be $env:HOME
}
It "Should do exactly the same thing as its alias" {
(pwd).Path | Should Be (Get-Location).Path
}
}