We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15a6106 commit a7c8d20Copy full SHA for a7c8d20
1 file changed
images/win/scripts/Tests/Haskell.Tests.ps1
@@ -36,6 +36,11 @@ Describe "Haskell" {
36
"ghc --version" | Should -MatchCommandOutput $defaultGhcShortVersion
37
}
38
39
+ # Sometimes choco doesn't return version 9, need to check it explicitly https://github.com/chocolatey/choco/issues/2271
40
+ It "Default GHC version is 9" -TestCases $ghcDefaultCases {
41
+ "ghc --version" | Should -MatchCommandOutput "9(\.\d+){2,}"
42
+ }
43
+
44
It "Cabal is installed" {
45
"cabal --version" | Should -ReturnZeroExitCode
46
0 commit comments