mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
16 lines
354 B
Ruby
16 lines
354 B
Ruby
|
require 'test/unit'
|
||
|
require 'stringio'
|
||
|
|
||
|
class TestStringIO < Test::Unit::TestCase
|
||
|
def test_empty_file
|
||
|
f = StringIO.new("")
|
||
|
assert_equal("", f.read(0))
|
||
|
assert_equal("", f.read)
|
||
|
assert_equal(nil, f.read(0))
|
||
|
f = StringIO.new("")
|
||
|
assert_equal(nil, f.read(1))
|
||
|
assert_equal(nil, f.read)
|
||
|
assert_equal(nil, f.read(1))
|
||
|
end
|
||
|
end
|