Files
runner-images-sangeeth/images/macos/tests/Git.Tests.ps1
2023-02-28 20:24:25 +01:00

14 lines
354 B
PowerShell

$os = Get-OSVersion
Describe "Git" {
It "git is installed" {
"git --version" | Should -ReturnZeroExitCode
}
It "git lfs is installed" {
"git lfs version" | Should -ReturnZeroExitCode
}
}
Describe "hub CLI" -Skip:($os.IsVentura) {
It "hub CLI is installed" {
"hub --version" | Should -ReturnZeroExitCode
}
}