17 lines
462 B
PowerShell
17 lines
462 B
PowerShell
Describe "7-Zip" {
|
|||
|
|
It "7z" {
|
||
|
|
"7z" | Should -ReturnZeroExitCode
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
Describe "azcopy" {
|
||
|
|
It "azcopy" {
|
||
|
|
#(azcopy --version) command returns exit code 1 (see details: https://github.com/Azure/azure-storage-azcopy/releases)
|
||
|
|
$azcopyVersion = (Get-CommandResult "azcopy --version").Output
|
||
|
|
$azcopyVersion | Should -BeLike "*azcopy*"
|
||
|
|
}
|
||
|
|
|
||
|
|
It "azcopy10" {
|
||
|
|
"azcopy10 --version" | Should -ReturnZeroExitCode
|
||
|
|
}
|
||
|
|
}
|