Windows-powershell / PowerShell-master /test /powershell /Modules /Microsoft.PowerShell.Management /Push-Location.Tests.ps1
| # Copyright (c) Microsoft Corporation. | |
| # Licensed under the MIT License. | |
| Describe "Test-Push-Location" -Tags "CI" { | |
| New-Variable -Name startDirectory -Value $(Get-Location).Path -Scope Global -Force | |
| BeforeEach { Set-Location $startDirectory } | |
| It "Should be called without error" { | |
| { Push-Location } | Should -Not -Throw | |
| } | |
| It "Should be able to push to the root directory" { | |
| # this works cross-platform | |
| { Push-Location / } | Should -Not -Throw | |
| } | |
| It "Should be able to use relative path to parent" { | |
| { Push-Location .. } | Should -Not -Throw | |
| } | |
| It "Should be able to use relative path to grandparent" { | |
| Test-Path ../.. | Should -BeTrue | |
| { Push-Location ../.. } | Should -Not -Throw | |
| } | |
| It "Should be able to push twice" { | |
| { Push-Location .. } | Should -Not -Throw | |
| { Push-Location .. } | Should -Not -Throw | |
| } | |
| It "Should be able to take a piped variable" { | |
| { ".." | Push-Location } | Should -Not -Throw | |
| } | |
| It "Should be able to call the pushd alias" { | |
| { pushd } | Should -Not -Throw | |
| } | |
| It "Should be able to push to the same location between the alias and the cmdlet" { | |
| pushd .. | |
| $aliasDirectory = $(Get-Location).Path | |
| Set-Location $startDirectory | |
| Push-Location .. | |
| $cmdletDirectory = $(Get-Location).Path | |
| $aliasDirectory | Should -BeExactly $cmdletDirectory | |
| } | |
| It "Should produce a pathinfo object when the passthru parameter is used" { | |
| Push-Location .. -PassThru | ForEach-Object { $_ | Should -BeOfType System.Management.Automation.PathInfo } | |
| } | |
| # final cleanup | |
| Set-Location $startDirectory | |
| } | |