mirror of
https://github.com/actions/runner-images.git
synced 2025-12-25 11:01:54 +08:00
16 lines
368 B
PowerShell
16 lines
368 B
PowerShell
Describe "MongoDB" {
|
|
It "mongodb" {
|
|
"mongo --version" | Should -ReturnZeroExitCode
|
|
"mongod --version"| Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "PostgreSQL" {
|
|
It "PostgreSQL-Client" {
|
|
"psql --version" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "PostgreSQL-Server" {
|
|
"pg_config --version" | Should -ReturnZeroExitCode
|
|
}
|
|
} |