fixed haskell tests

This commit is contained in:
Aleksandr Chebotov
2020-07-13 12:17:14 +03:00
parent f8bf39d9ad
commit ea539f15cf

View File

@@ -7,15 +7,15 @@ Describe "Git" {
}
}
It "Toolname '<toolName>' is installed" -TestCases $gitTestCases {
It "<toolName> is installed" -TestCases $gitTestCases {
"$toolName --version" | Should -ReturnZeroExitCode
}
It "ToolName '<toolName>' is located in '<source>'" -TestCases $gitTestCases {
It "<toolName> is located in '<source>'" -TestCases $gitTestCases {
(Get-Command -Name $toolName).Source | Should -Match $source
}
It "ToolName 'hub' is installed" {
It "hub is installed" {
"hub --version" | Should -ReturnZeroExitCode
}