Files
runner-images-PK/images/win/scripts/Tests/Databases.Tests.ps1
T

15 lines
293 B
PowerShell
Raw Normal View History

2020-07-09 10:53:29 +03:00
Describe "MongoDB" {
It "<ToolName>" -TestCases @(
@{ ToolName = "mongo" }
@{ ToolName = "mongod" }
) {
"$ToolName --version" | Should -ReturnZeroExitCode
}
}
Describe "MySQL" {
It "MySQL CLI" {
"mysql -V" | Should -ReturnZeroExitCode
}
}