1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/socket/tcpsocket/partially_closable_spec.rb

22 lines
523 B
Ruby
Raw Normal View History

require File.expand_path('../../../../spec_helper', __FILE__)
require File.expand_path('../../fixtures/classes', __FILE__)
require File.expand_path('../../shared/partially_closable_sockets', __FILE__)
describe "TCPSocket partial closability" do
before :each do
@server = TCPServer.new("127.0.0.1", 0)
@s1 = TCPSocket.new("127.0.0.1", @server.addr[1])
@s2 = @server.accept
end
after :each do
@server.close
@s1.close
@s2.close
end
it_should_behave_like "partially closable sockets"
end