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, 0 insertions, 16 deletions
diff --git a/trunk/test/ruby/test_pipe.rb b/trunk/test/ruby/test_pipe.rb
deleted file mode 100644
index 34f231ad8c..0000000000
--- a/trunk/test/ruby/test_pipe.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-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