about summary refs log tree commit homepage
path: root/test/test_socketpair_read_write.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_socketpair_read_write.rb')
-rw-r--r--test/test_socketpair_read_write.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test_socketpair_read_write.rb b/test/test_socketpair_read_write.rb
new file mode 100644
index 0000000..611313a
--- /dev/null
+++ b/test/test_socketpair_read_write.rb
@@ -0,0 +1,9 @@
+require './test/lib_read_write.rb'
+
+class TestKgioUNIXSocketPair < Test::Unit::TestCase
+  def setup
+    @rd, @wr = Kgio::UNIXSocket.pair
+  end
+
+  include LibReadWriteTest
+end