summaryrefslogtreecommitdiff
path: root/test/ruby/test_io.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_io.rb')
-rw-r--r--test/ruby/test_io.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 82f122489a..fafb082154 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -405,6 +405,19 @@ class TestIO < Test::Unit::TestCase
}
end
+ def test_each_codepoint_enumerator
+ make_tempfile {|t|
+ a = ""
+ b = ""
+ File.open(t, 'rt') {|f|
+ a = f.each_codepoint.take(4).pack('U*')
+ b = f.read(8)
+ }
+ assert_equal("foo\n", a)
+ assert_equal("bar\nbaz\n", b)
+ }
+ end
+
def test_codepoints
make_tempfile {|t|
bug2959 = '[ruby-core:28650]'