Parent

Methods

Test::Unit::Collector::Dir

Public Instance Methods

collect_file(name, suites, already_gathered) click to toggle source
# File lib/rake/ruby182_test_unit_fix.rb, line 6
def collect_file(name, suites, already_gathered)
  # loadpath = $:.dup
  dir = File.dirname(File.expand_path(name))
  $:.unshift(dir) unless $:.first == dir
  if(@req)
    @req.require(name)
  else
    require(name)
  end
  find_test_cases(already_gathered).each{|t| add_suite(suites, t.suite)}
ensure
  # $:.replace(loadpath)
  $:.delete_at $:.rindex(dir)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.