summaryrefslogtreecommitdiffstats
path: root/test/ruby/test_io.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-11 17:25:57 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-11 17:25:57 +0000
commitcf587476f6fdd39c8f6968db08ccef205fa5b9a1 (patch)
tree47db064ab69163c62130850e7c228d8377509b92 /test/ruby/test_io.rb
parent043696a9ae007dbb9f627ad95f068a52e7922c4f (diff)
downloadruby-cf587476f6fdd39c8f6968db08ccef205fa5b9a1.tar.gz
ruby-cf587476f6fdd39c8f6968db08ccef205fa5b9a1.tar.xz
ruby-cf587476f6fdd39c8f6968db08ccef205fa5b9a1.zip
* io.c (rb_io_reopen): clear read buffer.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17100 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_io.rb')
-rw-r--r--test/ruby/test_io.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 6e6a27f01..313fc0c86 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -1038,6 +1038,14 @@ class TestIO < Test::Unit::TestCase
safe_4 { r.reopen(t.path) }
end
end
+
+ open(__FILE__) do |f|
+ f.gets
+ assert_nothing_raised {
+ f.reopen(t.path)
+ assert_equal("foo\n", f.gets)
+ }
+ end
end
def test_foreach