mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00

BSDish platforms. [ruby-core:26300] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@25485 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
52 lines
908 B
Ruby
52 lines
908 B
Ruby
require 'test/unit'
|
|
require 'tmpdir'
|
|
require 'tempfile'
|
|
|
|
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 make_tempfile
|
|
t = Tempfile.new("foo")
|
|
t.binmode
|
|
t.puts "foo"
|
|
t.puts "bar"
|
|
t.puts "baz"
|
|
t.close
|
|
t
|
|
end
|
|
|
|
def test_binmode_after_closed
|
|
t = make_tempfile
|
|
t.close
|
|
assert_raise(IOError) {t.binmode}
|
|
end
|
|
|
|
def test_pos
|
|
t = make_tempfile
|
|
|
|
open(t.path, IO::RDWR|IO::CREAT|IO::TRUNC, 0600) do |f|
|
|
f.write "Hello"
|
|
assert_equal(5, f.pos)
|
|
end
|
|
open(t.path, IO::RDWR|IO::CREAT|IO::TRUNC, 0600) do |f|
|
|
f.sync = true
|
|
f.read
|
|
f.write "Hello"
|
|
assert_equal(5, f.pos)
|
|
end
|
|
end
|
|
end
|