We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 393b574 + 3804590 commit 811369cCopy full SHA for 811369c
spec/integration/ssl_ber_spec.rb
@@ -16,6 +16,9 @@ def transmit(str)
16
before(:each) do
17
@from, @to = IO.pipe
18
19
+ # The production code operates on sockets, which do need #connect called
20
+ # on them to work. Pipes are more robust for this test, so we'll skip
21
+ # the #connect call since it fails.
22
flexmock(OpenSSL::SSL::SSLSocket).
23
new_instances.should_receive(:connect => nil)
24
0 commit comments