mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
36 lines
770 B
PowerShell
36 lines
770 B
PowerShell
Describe "RubyGems" {
|
|
$gemTestCases = Get-ToolsetValue -KeyPath "ruby.rubygems" | ForEach-Object {
|
|
@{gemName = $_}
|
|
}
|
|
|
|
if ($gemTestCases)
|
|
{
|
|
It "Gem <gemName> is installed" -TestCases $gemTestCases {
|
|
"gem list -i '^$gemName$'" | Should -MatchCommandOutput "true"
|
|
}
|
|
}
|
|
}
|
|
|
|
Describe "Bundler" {
|
|
It "Bundler" {
|
|
"bundler --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "Nomad shenzhen CLI" {
|
|
It "Nomad shenzhen CLI" {
|
|
"ipa --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "Fastlane" {
|
|
It "Fastlane" {
|
|
"fastlane --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "xcpretty" {
|
|
It "xcpretty" {
|
|
"xcpretty --version" | Should -ReturnZeroExitCode
|
|
}
|
|
} |