mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 09:40:26 +00:00
11 lines
171 B
Ruby
11 lines
171 B
Ruby
![]() |
require "serverspec"
|
||
|
|
||
|
describe service("postgres") do
|
||
|
it { should be_enabled }
|
||
|
it { should be_running }
|
||
|
end
|
||
|
|
||
|
describe port("5432") do
|
||
|
it { should be_listening }
|
||
|
end
|