[lang-ref] ( push_directory ) ( powershell )

It 'should push directory' {
    # Push-Location / Pop-Location
    $orgDir = (Get-Location).Path

    Push-Location -Path 'C:\Users'
    Get-Location | Should -Be 'C:\Users'

    Pop-Location
    (Get-Location).Path | Should -Be $orgDir
}