2011-03-13 11:52:34 -04:00
|
|
|
require 'abstract_unit'
|
|
|
|
require 'active_support/descendants_tracker'
|
|
|
|
require 'active_support/dependencies'
|
|
|
|
require 'descendants_tracker_test_cases'
|
|
|
|
|
2012-01-05 20:12:46 -05:00
|
|
|
class DescendantsTrackerWithAutoloadingTest < ActiveSupport::TestCase
|
2011-03-13 11:52:34 -04:00
|
|
|
include DescendantsTrackerTestCases
|
|
|
|
|
2013-03-30 04:31:42 -04:00
|
|
|
def test_clear_with_autoloaded_parent_children_and_grandchildren
|
2011-03-13 11:52:34 -04:00
|
|
|
mark_as_autoloaded(*ALL) do
|
|
|
|
ActiveSupport::DescendantsTracker.clear
|
|
|
|
ALL.each do |k|
|
|
|
|
assert ActiveSupport::DescendantsTracker.descendants(k).empty?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-30 04:31:42 -04:00
|
|
|
def test_clear_with_autoloaded_children_and_grandchildren
|
2011-03-13 11:52:34 -04:00
|
|
|
mark_as_autoloaded Child1, Grandchild1, Grandchild2 do
|
|
|
|
ActiveSupport::DescendantsTracker.clear
|
2012-06-30 15:51:57 -04:00
|
|
|
assert_equal_sets [Child2], Parent.descendants
|
|
|
|
assert_equal_sets [], Child2.descendants
|
2011-03-13 11:52:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-30 04:31:42 -04:00
|
|
|
def test_clear_with_autoloaded_grandchildren
|
2011-03-13 11:52:34 -04:00
|
|
|
mark_as_autoloaded Grandchild1, Grandchild2 do
|
|
|
|
ActiveSupport::DescendantsTracker.clear
|
2012-06-30 15:51:57 -04:00
|
|
|
assert_equal_sets [Child1, Child2], Parent.descendants
|
|
|
|
assert_equal_sets [], Child1.descendants
|
|
|
|
assert_equal_sets [], Child2.descendants
|
2011-03-13 11:52:34 -04:00
|
|
|
end
|
|
|
|
end
|
2012-01-06 17:42:53 -05:00
|
|
|
end
|