summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-16 12:16:13 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-16 12:16:13 +0000
commitf9d0043099068f74830834e23070add812180a7a (patch)
tree86607ea01e665de7f1bdd4e061c9388dc1db492e /test
parent63034a52b88c7e6f4e54dc159b909f1ac535e6b1 (diff)
merges r27791 from trunk into ruby_1_9_2.
-- * test/ruby/test_io_m17n.rb (test_textmode_paragraph_binaryread): use opened pipes by with_pipe. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27841 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io_m17n.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/ruby/test_io_m17n.rb b/test/ruby/test_io_m17n.rb
index 1016eaa4d2..7bdd8e9b0f 100644
--- a/test/ruby/test_io_m17n.rb
+++ b/test/ruby/test_io_m17n.rb
@@ -1794,10 +1794,8 @@ EOT
def test_textmode_paragraph_binaryread
with_pipe("US-ASCII:UTF-8", :universal_newline => true) do |r, w|
- r, w = IO.pipe
w << "a\n\n\ncdefgh".gsub(/\n/, "\r\n")
w.close
- r.set_encoding("US-ASCII:UTF-8", :universal_newline => true)
assert_equal("a\n\n", r.gets(""))
assert_equal("c", r.getc)
assert_equal("defgh", r.readpartial(10))