diff options
Diffstat (limited to 'spec/rubyspec/library/socket/udpsocket/open_spec.rb')
-rw-r--r-- | spec/rubyspec/library/socket/udpsocket/open_spec.rb | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/spec/rubyspec/library/socket/udpsocket/open_spec.rb b/spec/rubyspec/library/socket/udpsocket/open_spec.rb deleted file mode 100644 index 188f879ed1..0000000000 --- a/spec/rubyspec/library/socket/udpsocket/open_spec.rb +++ /dev/null @@ -1,13 +0,0 @@ -require File.expand_path('../../../../spec_helper', __FILE__) -require File.expand_path('../../fixtures/classes', __FILE__) - -describe "UDPSocket.open" do - after :each do - @socket.close if @socket && [email protected]? - end - - it "allows calls to open without arguments" do - @socket = UDPSocket.open - @socket.should be_kind_of(UDPSocket) - end -end |