X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/fa63c845987967418edaff22b75958916b19f19a..5b2560e7d50f01a674b8da3d8f30100c92877958:/test/integration/squid/serverspec/squid_spec.rb diff --git a/test/integration/squid/serverspec/squid_spec.rb b/test/integration/squid/serverspec/squid_spec.rb deleted file mode 100644 index a72a8b356..000000000 --- a/test/integration/squid/serverspec/squid_spec.rb +++ /dev/null @@ -1,21 +0,0 @@ -require "serverspec" - -# Required by serverspec -set :backend, :exec - -describe package("squid") do - it { should be_installed } -end - -describe service("squid") do - it { should be_enabled } - it { should be_running } -end - -describe port(3128) do - it { should be_listening.with("tcp") } -end - -describe port(8080) do - it { should be_listening.with("tcp") } -end