mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 21:44:30 +02:00

(Test::Unit::Collector::ObjectSpace::NAME): fix a typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17904 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
40 lines
1,005 B
Ruby
40 lines
1,005 B
Ruby
# Author:: Nathaniel Talbott.
|
|
# Copyright:: Copyright (c) 2000-2003 Nathaniel Talbott. All rights reserved.
|
|
# License:: Ruby license.
|
|
|
|
require 'test/unit/collector'
|
|
|
|
module Test
|
|
module Unit
|
|
module Collector
|
|
class ObjectSpace
|
|
include Test::Unit::Collector
|
|
|
|
NAME = 'collected from the subclasses of TestCase'
|
|
|
|
def initialize(source=nil)
|
|
super()
|
|
@source = source
|
|
end
|
|
|
|
def collect(name=NAME)
|
|
suite = TestSuite.new(name)
|
|
sub_suites = []
|
|
if @source
|
|
@source.each_object(Class) do |klass|
|
|
if(Test::Unit::TestCase > klass)
|
|
add_suite(sub_suites, klass.suite)
|
|
end
|
|
end
|
|
else
|
|
TestCase::DECENDANT_CLASSES.each do |klass|
|
|
add_suite(sub_suites, klass.suite)
|
|
end
|
|
end
|
|
sort(sub_suites).each{|s| suite << s}
|
|
suite
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|