From 0dc342de848a642ecce8db697b8fecd83a63e117 Mon Sep 17 00:00:00 2001 From: yugui Date: Mon, 25 Aug 2008 15:02:05 +0000 Subject: added tag v1_9_0_4 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_9_0_4@18845 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- trunk/test/ruby/test_pipe.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 trunk/test/ruby/test_pipe.rb (limited to 'trunk/test/ruby/test_pipe.rb') 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 -- cgit v1.2.3