X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/866381f348da00422aefef07df57f8cee449d4a6..e813380cea0d2d5b9c86e09cfd552ad58dbf341b:/test/integration/tile/inspec/apache_spec.rb 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