summaryrefslogtreecommitdiff
path: root/trunk/test/ruby/test_pipe.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/test/ruby/test_pipe.rb')
-rw-r--r--trunk/test/ruby/test_pipe.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/trunk/test/ruby/test_pipe.rb b/trunk/test/ruby/test_pipe.rb
new file mode 100644
index 0000000000..34f231ad8c
--- /dev/null
+++ b/trunk/test/ruby/test_pipe.rb
@@ -0,0 +1,16 @@
+require 'test/unit'
+require_relative 'ut_eof'
+
+class TestPipe < Test::Unit::TestCase
+ include TestEOF
+ def open_file(content)
+ r, w = IO.pipe
+ w << content
+ w.close
+ begin
+ yield r
+ ensure
+ r.close
+ end
+ end
+end