diff options
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/descendants_tracker_without_autoloading_test.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/activesupport/test/descendants_tracker_without_autoloading_test.rb b/activesupport/test/descendants_tracker_without_autoloading_test.rb index 74669aaca1..4f1ee3e760 100644 --- a/activesupport/test/descendants_tracker_without_autoloading_test.rb +++ b/activesupport/test/descendants_tracker_without_autoloading_test.rb @@ -4,4 +4,14 @@ require 'descendants_tracker_test_cases' class DescendantsTrackerWithoutAutoloadingTest < ActiveSupport::TestCase include DescendantsTrackerTestCases + + def test_clear_without_autoloaded_singleton_parent + mark_as_autoloaded do + parent_instance = Parent.new + parent_instance.singleton_class.descendants #adds singleton class in @@direct_descendants + ActiveSupport::DescendantsTracker.clear #clear is supposed to remove singleton class keys so GC can remove them. + assert !ActiveSupport::DescendantsTracker.class_variable_get(:@@direct_descendants).keys.include?(parent_instance.singleton_class) + end + end + end |