/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/powershell/Modules/Microsoft.PowerShell.Utility/Update-List.Tests.ps1
29 строк
743 B
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 "Update-List Tests" -Tag CI { BeforeEach { $testObj = [pscustomobject]@{a = [System.Collections.ArrayList]::new(@(1,2,3))} } It "-Add works" { $testObj | Update-List -Property a -Add 4 $testObj.A | Should -Be 1,2,3,4 } It "-Remove works" { Update-List -InputObject $testObj -Property a -Remove 2 $testObj.A | Should -Be 1,3 } It "-Add with -Remove works" { $testObj | Update-List -Property a -Remove 2 -Add 4 $testObj.A | Should -Be 1,3,4 } It "-Replace works" { $testObj | Update-List -Property a -Replace 2,4 $testObj.A | Should -Be 2,4 } }