mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7fbf13f7f2
* test/ruby/ut_eof.rb, test/ruby/test_file.rb, test/ruby/test_pipe.rb, test/stringio/test_stringio.rb: add EOF test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
14 lines
303 B
Ruby
14 lines
303 B
Ruby
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
|
|
end
|