aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/test/descendants_tracker_with_autoloading_test.rb
blob: 9180f1f977d67d9a5f33fa6de943c06f2f489b4a (plain) (tree)
1
2
3
4
5
6
                       



                                            
                                                                     


























                                                                      
   
require 'abstract_unit'
require 'active_support/descendants_tracker'
require 'active_support/dependencies'
require 'descendants_tracker_test_cases'

class DescendantsTrackerWithAutoloadingTest < ActiveSupport::TestCase
  include DescendantsTrackerTestCases

  def test_clear_with_autoloaded_parent_children_and_granchildren
    mark_as_autoloaded(*ALL) do
      ActiveSupport::DescendantsTracker.clear
      ALL.each do |k|
        assert ActiveSupport::DescendantsTracker.descendants(k).empty?
      end
    end
  end

  def test_clear_with_autoloaded_children_and_granchildren
    mark_as_autoloaded Child1, Grandchild1, Grandchild2 do
      ActiveSupport::DescendantsTracker.clear
      assert_equal [Child2], Parent.descendants
      assert_equal [], Child2.descendants
    end
  end

  def test_clear_with_autoloaded_granchildren
    mark_as_autoloaded Grandchild1, Grandchild2 do
      ActiveSupport::DescendantsTracker.clear
      assert_equal [Child1, Child2], Parent.descendants
      assert_equal [], Child1.descendants
      assert_equal [], Child2.descendants
    end
  end
end