зеркало из https://github.com/github/ruby.git
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:
Родитель
47db9cb456
Коммит
555d477d2e
|
@ -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
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче