X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/19e911cb27b7b413829a7cbb38aad5a59db171c5..69f0fad6138dc422bb01c60a2433c4f5687afe15:/test/integration/community/serverspec/http_spec.rb diff --git a/test/integration/community/serverspec/http_spec.rb b/test/integration/community/serverspec/http_spec.rb new file mode 100644 index 000000000..3f445b0ab --- /dev/null +++ b/test/integration/community/serverspec/http_spec.rb @@ -0,0 +1,12 @@ +require "serverspec" + +# Required by serverspec +set :backend, :exec + +describe port(80) do + it { should be_listening.with("tcp") } +end + +describe port(443) do + it { should be_listening.with("tcp") } +end