1 describe package("postgresql-15") do
2 it { should be_installed }
5 describe package("postgresql-15-postgis-3") do
6 it { should be_installed }
9 describe service("postgresql@15-main") do
10 it { should be_enabled }
11 it { should be_running }
14 describe port(5432) do
15 it { should be_listening }
16 its("protocols") { should cmp %w[tcp tcp6] }