diff --git a/test/integration/default/serverspec/postgres_spec.rb b/test/integration/default/serverspec/postgres_spec.rb new file mode 100644 index 0000000..8977a5a --- /dev/null +++ b/test/integration/default/serverspec/postgres_spec.rb @@ -0,0 +1,10 @@ +require "serverspec" + +describe service("postgres") do + it { should be_enabled } + it { should be_running } +end + +describe port("5432") do + it { should be_listening } +end