Describe "PHP" { $testCases = (Get-ToolsetContent).php.versions | ForEach-Object { @{PhpVersion = $_} } It "php " -TestCases $testCases { "php${PhpVersion} --version" | Should -ReturnZeroExitCode "php-config${PhpVersion} --version" | Should -ReturnZeroExitCode "phpize${PhpVersion} --version" | Should -ReturnZeroExitCode } It "PHPUnit" { "phpunit --version" | Should -ReturnZeroExitCode } It "Composer" { "composer --version" | Should -ReturnZeroExitCode } It "Pear" { "pear" | Should -ReturnZeroExitCode } It "Pecl" { "pecl" | Should -ReturnZeroExitCode } } Describe "Swift" -Skip:((-not (Test-IsUbuntu20)) -and (-not (Test-IsUbuntu22))) { It "swift" { "swift --version" | Should -ReturnZeroExitCode } It "swiftc" { "swiftc --version" | Should -ReturnZeroExitCode } It "libsourcekitd" { "/usr/local/lib/libsourcekitdInProc.so" | Should -Exist } } Describe "PipxPackages" { $testCases = (Get-ToolsetContent).pipx | ForEach-Object { @{package=$_.package; cmd = $_.cmd} } It "" -TestCases $testCases { "$cmd --version" | Should -ReturnZeroExitCode } }