]> git.openstreetmap.org Git - chef.git/blob - test/integration/community/serverspec/http_spec.rb
Add a test for the community cookbook
[chef.git] / test / integration / community / serverspec / http_spec.rb
1 require "serverspec"
2
3 # Required by serverspec
4 set :backend, :exec
5
6 describe port(80) do
7   it { should be_listening.with("tcp") }
8 end
9
10 describe port(443) do
11   it { should be_listening.with("tcp") }
12 end