2021-07-22 17:31:36 +03:00
|
|
|
Describe "MongoDB" {
|
2021-01-14 00:46:44 +07:00
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
}
|