It was working before openssl 1.1

Bug, upstream: https://github.com/httprb/http/issues/465

--- a/spec/lib/http_spec.rb
+++ b/spec/lib/http_spec.rb
@@ -116,7 +116,7 @@
         expect(response.to_s).to match(/<!doctype html>/)
       end
 
-      context "ssl" do
+      xcontext "ssl" do
         it "responds with the endpoint's body" do
           response = ssl_client.via(proxy.addr, proxy.port).get dummy_ssl.endpoint
           expect(response.to_s).to match(/<!doctype html>/)
@@ -152,7 +152,7 @@
         expect(response.status).to eq(407)
       end
 
-      context "ssl" do
+      pending "ssl" do
         it "responds with the endpoint's body" do
           response = ssl_client.via(proxy.addr, proxy.port, "username", "password").get dummy_ssl.endpoint
           expect(response.to_s).to match(/<!doctype html>/)
--- a/spec/lib/http/client_spec.rb
+++ b/spec/lib/http/client_spec.rb
@@ -261,7 +261,7 @@
     let(:client)  { described_class.new(options.merge(extra_options)) }
   end
 
-  describe "working with SSL" do
+  xdescribe "working with SSL" do
     run_server(:dummy_ssl) { DummyServer.new(:ssl => true) }
 
     let(:extra_options) { {} }
