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 end