Files
runner-images/images/win/scripts/Tests/Databases.Tests.ps1
2020-07-09 10:53:29 +03:00

8 lines
194 B
PowerShell

Describe "MongoDB" {
It "<ToolName>" -TestCases @(
@{ ToolName = "mongo" }
@{ ToolName = "mongod" }
) {
"$ToolName --version" | Should -ReturnZeroExitCode
}
}