mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
not portable, I guess. [ruby-core:21561] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@21913 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
31 lines
547 B
Ruby
31 lines
547 B
Ruby
require 'test/unit'
|
|
require 'tmpdir'
|
|
|
|
class TestIO < Test::Unit::TestCase
|
|
def mkcdtmpdir
|
|
Dir.mktmpdir {|d|
|
|
Dir.chdir(d) {
|
|
yield
|
|
}
|
|
}
|
|
end
|
|
|
|
def test_gets_rs
|
|
r, w = IO.pipe
|
|
w.print "\377xyz"
|
|
w.close
|
|
assert_equal("\377", r.gets("\377"), "[ruby-dev:24460]")
|
|
r.close
|
|
end
|
|
|
|
def test_readpartial_pos
|
|
mkcdtmpdir {
|
|
open("foo", "w") {|f| f << "abc" }
|
|
open("foo") {|f|
|
|
f.seek(0)
|
|
assert_equal("ab", f.readpartial(2))
|
|
assert_equal(2, f.pos)
|
|
}
|
|
}
|
|
end
|
|
end
|