]> git.openstreetmap.org Git - chef.git/blobdiff - test/integration/tile/inspec/apache_spec.rb
tile: Update index page to modern HTML, add tests
[chef.git] / test / integration / tile / inspec / apache_spec.rb
index 8006330b441e96365a635a878578c9623dfe1469..50a916801c2f32639cb34f7aaf097d2034c6f515 100644 (file)
@@ -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