Describe "Clang/LLVM" { BeforeAll { $toolsetVersion = Get-ToolsetValue 'llvm.version' } It "Clang/LLVM is installed and version is correct" { $clangVersion = & "$(brew --prefix llvm@$toolsetVersion)/bin/clang" --version $clangVersion[0] | Should -BeLike "*${toolsetVersion}*" } }