. Clarifying a hack in spec code
This commit is contained in:
parent
a5e10e9e75
commit
380459060d
|
@ -16,6 +16,9 @@ describe "BER serialisation (SSL)" do
|
||||||
before(:each) do
|
before(:each) do
|
||||||
@from, @to = IO.pipe
|
@from, @to = IO.pipe
|
||||||
|
|
||||||
|
# The production code operates on sockets, which do need #connect called
|
||||||
|
# on them to work. Pipes are more robust for this test, so we'll skip
|
||||||
|
# the #connect call since it fails.
|
||||||
flexmock(OpenSSL::SSL::SSLSocket).
|
flexmock(OpenSSL::SSL::SSLSocket).
|
||||||
new_instances.should_receive(:connect => nil)
|
new_instances.should_receive(:connect => nil)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue