mirror of
https://github.com/actions/runner-images.git
synced 2025-12-27 03:47:40 +08:00
15 lines
293 B
PowerShell
15 lines
293 B
PowerShell
Describe "MongoDB" {
|
|
It "<ToolName>" -TestCases @(
|
|
@{ ToolName = "mongo" }
|
|
@{ ToolName = "mongod" }
|
|
) {
|
|
"$ToolName --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
Describe "MySQL" {
|
|
It "MySQL CLI" {
|
|
"mysql -V" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|