summaryrefslogtreecommitdiff
path: root/test/ruby/test_io.rb
blob: 642c8f44309117098185530cfeaa64df6eb40c81 (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'test/unit'

class TestIO < Test::Unit::TestCase
  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