mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 01:30:25 +00:00
10 lines
171 B
Ruby
10 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
|