aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/socket/tcpserver/output_spec.rb
blob: b193bb83ea470486fff9a60b064a25f38c619816 (plain)
1
2
3
4
5
6
7
8
9
require File.expand_path('../../../../spec_helper', __FILE__)
require File.expand_path('../../fixtures/classes', __FILE__)

describe "TCPServer#<<" do
  after :each do
    @server.close if @server
    @socket.close if @socket
  end
end