test_stringio.rb: more assertions

* test/stringio/test_stringio.rb (test_read): add assertions
  of return value of read with a buffer string.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59576 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-08-12 01:34:13 +00:00
Родитель 47db9cb456
Коммит 555d477d2e
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -570,12 +570,12 @@ class TestStringIO < Test::Unit::TestCase
assert_equal("\u3042\u3044", f.read(nil, nil), bug5207)
f.rewind
s = ""
f.read(nil, s)
assert_same(s, f.read(nil, s))
assert_equal("\u3042\u3044", s, bug5207)
f.rewind
# not empty buffer
s = "0123456789"
f.read(nil, s)
assert_same(s, f.read(nil, s))
assert_equal("\u3042\u3044", s)
end