aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext
diff options
context:
space:
mode:
authorNicholas Seckar <nseckar@gmail.com>2006-03-26 20:00:40 +0000
committerNicholas Seckar <nseckar@gmail.com>2006-03-26 20:00:40 +0000
commit3bab575316d919d1d51b9384f76f73cbcb0971e9 (patch)
tree0554cb4f20fbf4c650d6148b941e4217ce840fa9 /activesupport/test/core_ext
parent4238666627a6b319c19f22ee279d15284ed5f245 (diff)
downloadrails-3bab575316d919d1d51b9384f76f73cbcb0971e9.tar.gz
rails-3bab575316d919d1d51b9384f76f73cbcb0971e9.tar.bz2
rails-3bab575316d919d1d51b9384f76f73cbcb0971e9.zip
Update Object.subclasses_of to locate nested classes. Update Object.remove_subclasses_of to use Class.remove_class.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4049 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r--activesupport/test/core_ext/object_and_class_ext_test.rb27
1 files changed, 25 insertions, 2 deletions
diff --git a/activesupport/test/core_ext/object_and_class_ext_test.rb b/activesupport/test/core_ext/object_and_class_ext_test.rb
index 6a100e813b..a1e5ea79db 100644
--- a/activesupport/test/core_ext/object_and_class_ext_test.rb
+++ b/activesupport/test/core_ext/object_and_class_ext_test.rb
@@ -10,6 +10,13 @@ class ClassD < ClassA; end
class ClassI; end
class ClassJ < ClassI; end
+class ClassK
+end
+module Nested
+ class ClassL < ClassK
+ end
+end
+
module Bar
def bar; end
end
@@ -40,6 +47,22 @@ class ClassExtTest < Test::Unit::TestCase
ClassI.remove_subclasses
assert_equal [], Object.subclasses_of(ClassI)
end
+
+ def test_subclasses_of_should_find_nested_classes
+ assert Object.subclasses_of(ClassK).include?(Nested::ClassL)
+ end
+
+ def test_subclasses_of_should_not_return_removed_classes
+ # First create the removed class
+ old_class = Nested.send :remove_const, :ClassL
+ new_class = Class.new(ClassK)
+ Nested.const_set :ClassL, new_class
+ assert_equal "Nested::ClassL", new_class.name # Sanity check
+
+ subclasses = Object.subclasses_of(ClassK)
+ assert subclasses.include?(new_class)
+ assert ! subclasses.include?(old_class)
+ end
end
class ObjectTests < Test::Unit::TestCase
@@ -55,9 +78,9 @@ class ObjectTests < Test::Unit::TestCase
def test_extended_by
foo = Foo.new
- assert_equal [Bar], foo.extended_by
+ assert foo.extended_by.include?(Bar)
foo.extend(Baz)
- assert_equal %w(Bar Baz), foo.extended_by.map {|mod| mod.name}.sort
+ assert ([Bar, Baz] - foo.extended_by).empty?, "Expected Bar, Baz in #{foo.extended_by.inspect}"
end
def test_extend_with_included_modules_from