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