summaryrefslogtreecommitdiff
path: root/spec/ruby/library/socket/unixsocket/socketpair_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/socket/unixsocket/socketpair_spec.rb')
-rw-r--r--spec/ruby/library/socket/unixsocket/socketpair_spec.rb20
1 files changed, 9 insertions, 11 deletions
diff --git a/spec/ruby/library/socket/unixsocket/socketpair_spec.rb b/spec/ruby/library/socket/unixsocket/socketpair_spec.rb
index 5f34008df3..c61fc00be4 100644
--- a/spec/ruby/library/socket/unixsocket/socketpair_spec.rb
+++ b/spec/ruby/library/socket/unixsocket/socketpair_spec.rb
@@ -3,18 +3,16 @@ require_relative '../fixtures/classes'
require_relative '../shared/partially_closable_sockets'
require_relative 'shared/pair'
-with_feature :unix_socket do
- describe "UNIXSocket.socketpair" do
- it_should_behave_like :unixsocket_pair
- it_should_behave_like :partially_closable_sockets
+describe "UNIXSocket.socketpair" do
+ it_should_behave_like :unixsocket_pair
+ it_should_behave_like :partially_closable_sockets
- before :each do
- @s1, @s2 = UNIXSocket.socketpair
- end
+ before :each do
+ @s1, @s2 = UNIXSocket.socketpair
+ end
- after :each do
- @s1.close
- @s2.close
- end
+ after :each do
+ @s1.close
+ @s2.close
end
end