[Ubuntu] Install zstd homebrew (#3181)

* install zstd using brew

* fix typo

* remove Run-Command

* replace to Take-OutputPart

* create zstd symlinks
This commit is contained in:
Aleksandr Chebotov
2021-04-14 19:34:49 +03:00
committed by GitHub
parent 16fd521369
commit b04de88f6e
7 changed files with 36 additions and 4 deletions

View File

@@ -225,6 +225,14 @@ Describe "Homebrew" {
It "homebrew" {
"brew --version" | Should -ReturnZeroExitCode
}
Context "Packages" {
$testCases = (Get-ToolsetContent).brew | ForEach-Object { @{ ToolName = $_.name } }
It "<ToolName>" -TestCases $testCases {
"$ToolName --version" | Should -Not -BeNullOrEmpty
}
}
}
Describe "Julia" {