diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-18 09:23:07 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-18 09:23:07 +0000 |
commit | 674c62c94c1f2a88a9f8017e7367b9dc1810438e (patch) | |
tree | 7d30f382804d06cb1d60fd451193287f148c920f /test | |
parent | fd03de79ea4c7446c73ed850239b584fc8783498 (diff) | |
download | ruby-674c62c94c1f2a88a9f8017e7367b9dc1810438e.tar.gz ruby-674c62c94c1f2a88a9f8017e7367b9dc1810438e.tar.xz ruby-674c62c94c1f2a88a9f8017e7367b9dc1810438e.zip |
* test/stringio/test_stringio.rb: imported from [ruby-dev:21941].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r-- | test/stringio/test_stringio.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/stringio/test_stringio.rb b/test/stringio/test_stringio.rb new file mode 100644 index 000000000..10390fc6d --- /dev/null +++ b/test/stringio/test_stringio.rb @@ -0,0 +1,15 @@ +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 |