[macOS] Move Ruby and Go versions to toolset (#4046)

This commit is contained in:
Dibir Magomedsaygitov
2021-09-10 14:41:17 +03:00
committed by GitHub
parent 045e638562
commit d022b0d6a8
15 changed files with 81 additions and 39 deletions

View File

@@ -24,11 +24,6 @@ Describe "SwiftFormat" {
}
}
Describe "Go" {
It "Go" {
"go version" | Should -ReturnZeroExitCode
}
}
Describe "GnuPG" {
It "GnuPG" {

View File

@@ -97,4 +97,10 @@ Describe "Bicep" {
It "Bicep" {
"bicep --version" | Should -ReturnZeroExitCode
}
}
Describe "Go" {
It "Go" {
"go version" | Should -ReturnZeroExitCode
}
}

View File

@@ -1,5 +1,5 @@
Describe "RubyGems" {
$gemTestCases = Get-ToolsetValue -KeyPath "rubygems" | ForEach-Object {
$gemTestCases = Get-ToolsetValue -KeyPath "ruby.rubygems" | ForEach-Object {
@{gemName = $_}
}