You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
has way too nice expect. Consider the following change:
diff --git a/spec/lib/twingly/http_spec.rb b/spec/lib/twingly/http_spec.rb
index 765efad..184dc42 100644
--- a/spec/lib/twingly/http_spec.rb+++ b/spec/lib/twingly/http_spec.rb@@ -423,9 +423,9 @@ RSpec.describe Twingly::HTTP::Client do
WebMock.disable_net_connect!
end
- context "when given a slow host" do+ fcontext "when given a slow host" do
let(:toxiproxy) { "http_host" }
- let(:url) { "http://#{ToxiproxyConfig.downstream(toxiproxy)}/" }+ let(:url) { "http://thisdoesnotevenexist.com/" }
describe "open/read timeout" do
before { client.http_timeout = 0.1 }
It passes the tests, which it should not :) I guess the best solution is to introduce a Timeout error which the specs can expect rather than the general error.
The text was updated successfully, but these errors were encountered:
The following spec:
twingly-http/spec/lib/twingly/http_spec.rb
Lines 426 to 446 in 494bba1
It passes the tests, which it should not :) I guess the best solution is to introduce a Timeout error which the specs can expect rather than the general error.
The text was updated successfully, but these errors were encountered: