X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/22bf736efc9c971696fbc42a910b84c9f3895260..b3538164e1ccbc85adc78d47cdcd9ba4e456aacf:/test/integration/tile/inspec/apache_spec.rb?ds=sidebyside diff --git a/test/integration/tile/inspec/apache_spec.rb b/test/integration/tile/inspec/apache_spec.rb index 8006330b4..50a916801 100644 --- a/test/integration/tile/inspec/apache_spec.rb +++ b/test/integration/tile/inspec/apache_spec.rb @@ -16,3 +16,11 @@ describe port(443) do it { should be_listening } its("protocols") { should cmp "tcp" } end + +describe http("http://localhost") do + its("status") { should cmp 301 } +end + +describe http("https://localhost", :ssl_verify => false) do + its("status") { should cmp 200 } +end