summaryrefslogtreecommitdiff
path: root/test/stringio/test_stringio.rb
blob: e16bd0e37b1965d75e383634b86827836d342eee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'test/unit'
require 'stringio'
dir = File.expand_path(__FILE__)
2.times {dir = File.dirname(dir)}
$:.replace([File.join(dir, "ruby")] | $:)
require 'ut_eof'

class TestStringIO < Test::Unit::TestCase
  include TestEOF
  def open_file(content)
    f = StringIO.new(content)
    yield f
  end
  alias open_file_rw open_file
end