# File test/unit.rb, line 292
def died(*additional)
@status = :quit
@io.close
call_hook(:dead,*additional)
end
# File test/unit.rb, line 276
def hook(id,&block)
@hooks[id] ||= []
@hooks[id] << block
self
end
# File test/unit.rb, line 256
def puts(*args)
@io.puts(*args)
end
# File test/unit.rb, line 282
def read
res = (@status == :quit) ? @io.read : @io.gets
res && res.chomp
end
# File test/unit.rb, line 260
def run(task,type)
@file = File.basename(task).gsub(/\.rb/,"")
@real_file = task
begin
puts "loadpath #{[Marshal.dump($:-@loadpath)].pack("m").gsub("\n","")}"
@loadpath = $:.dup
puts "run #{task} #{type}"
@status = :prepare
rescue Errno::EPIPE
died
rescue IOError
raise unless ["stream closed","closed stream"].include? $!.message
died
end
end
Commenting is here to help enhance the documentation. For example, sample code, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.