Describe "Git" { $gitTools = 'bash', 'awk', 'git', 'git-lfs' $gitTestCases = $gitTools | ForEach-Object { @{ toolName = $_ source = [regex]::Escape("$env:ProgramFiles\Git") } } It " is installed" -TestCases $gitTestCases { "$toolName --version" | Should -ReturnZeroExitCode } It " is located in ''" -TestCases $gitTestCases { (Get-Command -Name $toolName).Source | Should -Match $source } It "Git core.symlinks=true option is enabled" { git config core.symlinks | Should -BeExactly true } It "GCM_INTERACTIVE environment variable should be equal Never" { $env:GCM_INTERACTIVE | Should -BeExactly Never } }