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