2   it { should be_listening }
 
   3   its("protocols") { should cmp %w[tcp tcp6] }
 
   7   it { should be_listening }
 
   8   its("protocols") { should cmp %w[tcp tcp6] }
 
  11 describe http("http://localhost/.well-known/acme-challenge/abc",
 
  12               :headers => { "Host" => "community.openstreetmap.org" },
 
  13               allow_redirects: false) do
 
  14   its("status") { should cmp 301 }
 
  15   its("headers.Location") { should cmp %r{^http://acme\.openstreetmap\.org/} }