提交 ea456801 编写于 作者: J Jeremy Kemper

Object.subclasses_of includes anonymous subclasses.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7590 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 2d02199e
*SVN*
* Object.subclasses_of includes anonymous subclasses. [Jeremy Kemper]
* Fixed that pluralizing an empty string should return the same empty string, not "s" #7720 [josh]
* Added call to inspect on non-string classes for the logger #8533 [codahale]
......
......@@ -5,17 +5,21 @@ def remove_subclasses_of(*superclasses) #:nodoc:
def subclasses_of(*superclasses) #:nodoc:
subclasses = []
# Exclude this class unless it's a subclass of our supers and is defined.
# We check defined? in case we find a removed class that has yet to be
# garbage collected. This also fails for anonymous classes -- please
# submit a patch if you have a workaround.
ObjectSpace.each_object(Class) do |k|
next unless # Exclude this class unless
superclasses.any? { |superclass| k < superclass } && # It *is* a subclass of our supers
eval("defined?(::#{k}) && ::#{k}.object_id == k.object_id") # It *is* defined
# Note that we check defined? in case we find a removed class that has
# yet to be garbage collected.
subclasses << k
if superclasses.any? { |superclass| k < superclass } &&
(k.name.blank? || eval("defined?(::#{k}) && ::#{k}.object_id == k.object_id"))
subclasses << k
end
end
subclasses
end
def extended_by #:nodoc:
ancestors = class << self; ancestors end
ancestors.select { |mod| mod.class == Module } - [ Object, Kernel ]
......
......@@ -6,6 +6,7 @@
# Wrap tests that use Mocha and skip if unavailable.
def uses_mocha(test_name)
require 'rubygems'
gem 'mocha', '>= 0.5.5'
require 'mocha'
yield
rescue LoadError
......
......@@ -97,7 +97,14 @@ def test_subclasses_of_with_multiple_roots
classes = Object.subclasses_of(ClassI, ClassK)
assert_equal %w(ClassJ Nested::ClassL), classes.collect(&:to_s).sort
end
def test_subclasses_of_doesnt_find_anonymous_classes
assert_equal [], Object.subclasses_of(Foo)
bar = Class.new(Foo)
assert_nothing_raised do
assert_equal [bar], Object.subclasses_of(Foo)
end
end
end
class ObjectTests < Test::Unit::TestCase
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册