/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/powershell/Modules/Microsoft.PowerShell.Management/Push-Location.Tests.ps1
57 строк
2 KB
Steve Lee
Update copyright notice to latest guidance (#12190)
24 мар 2020, 21:08
Не верифицирован
24 мар 2020, 21:08
b7cb335
Код
Авторство
О чём код?
# 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 }