/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/powershell/Modules/Microsoft.PowerShell.Management/Hierarchical-Path.Tests.ps1
48 строк
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 "Hierarchical paths" -Tags "CI" { BeforeAll { $data = "Hello World" Setup -File testFile.txt -Content $data } It "should work with Join-Path " { $testPath = Join-Path $TestDrive testFile.txt Get-Content $testPath | Should -BeExactly $data } It "should work with platform's slashes" { $testPath = "$TestDrive$([IO.Path]::DirectorySeparatorChar)testFile.txt" Get-Content $testPath | Should -BeExactly $data } It "should work with forward slashes" { $testPath = "$TestDrive/testFile.txt" Get-Content $testPath | Should -BeExactly $data } It "should work with backward slashes" { $testPath = "$TestDrive\testFile.txt" Get-Content $testPath | Should -BeExactly $data } It "should work with backward slashes for each separator" { $testPath = "$TestDrive\testFile.txt".Replace("/","\") Get-Content $testPath | Should -BeExactly $data } It "should work with forward slashes for each separator" { $testPath = "$TestDrive/testFile.txt".Replace("\","/") Get-Content $testPath | Should -BeExactly $data } It "should work even if there are too many forward slashes" { $testPath = "$TestDrive//////testFile.txt" Get-Content $testPath | Should -BeExactly $data } It "should work even if there are too many backward slashes" { $testPath = "$TestDrive\\\\\\\testFile.txt" Get-Content $testPath | Should -BeExactly $data } }