Skip to content
Snippets Groups Projects
Commit 728a3fbc authored by Praveen Arimbrathodiyil's avatar Praveen Arimbrathodiyil
Browse files

Disable tests using SSL

parent a152712e
No related branches found
No related tags found
No related merge requests found
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) { {} }
disable-network-tests.patch
add-missing-x509v3-extensions-in-spec
disable-ssl-tests.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment