summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/socket/unixsocket/inspect_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/socket/unixsocket/inspect_spec.rb')
-rw-r--r--spec/rubyspec/library/socket/unixsocket/inspect_spec.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/spec/rubyspec/library/socket/unixsocket/inspect_spec.rb b/spec/rubyspec/library/socket/unixsocket/inspect_spec.rb
deleted file mode 100644
index 8ea25ec1e9..0000000000
--- a/spec/rubyspec/library/socket/unixsocket/inspect_spec.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-require File.expand_path('../../../../spec_helper', __FILE__)
-require File.expand_path('../../fixtures/classes', __FILE__)
-
-describe "UNIXSocket#inspect" do
- platform_is_not :windows do
- it "returns sockets fd for unnamed sockets" do
- begin
- s1, s2 = UNIXSocket.socketpair
- s1.inspect.should == "#<UNIXSocket:fd #{s1.fileno}>"
- s2.inspect.should == "#<UNIXSocket:fd #{s2.fileno}>"
- ensure
- s1.close
- s2.close
- end
- end
- end
-end