summaryrefslogtreecommitdiff
path: root/test/ruby/test_io.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-26 11:01:18 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-26 11:01:18 +0000
commitff2af1ed9843ac3bb7cddc014b58b5dcde225ebd (patch)
treeb136b1826b62f83c57a1792971a692876edfa4cf /test/ruby/test_io.rb
parentf902e0946044222e4214ddde0e63ba64a435d7bb (diff)
* bootstraptest/test_knownbug.rb: move fixed tests.
* bootstraptest/test_method.rb: ditto. * test/ruby/test_io.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13523 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_io.rb')
-rw-r--r--test/ruby/test_io.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index e1859ad4f0..7da6535edf 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -37,7 +37,7 @@ class TestIO < Test::Unit::TestCase
end
# This test cause SEGV.
- def _test_ungetc
+ def test_ungetc
r, w = IO.pipe
w.close
assert_raise(IOError, "[ruby-dev:31650]") { 20000.times { r.ungetc "a" } }