aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/descendants_tracker_with_autoloading_test.rb
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-03-30 14:01:42 +0530
committerVipul A M <vipulnsward@gmail.com>2013-03-30 14:01:42 +0530
commit5a0e583f40e0e1e7018cfadb4cfe147a747d2f2d (patch)
tree4ecccc09c80d3383f258b409a9a88b9df48dfb36 /activesupport/test/descendants_tracker_with_autoloading_test.rb
parent022ed6c763d91e1bb032150fc7ec5991141f8119 (diff)
downloadrails-5a0e583f40e0e1e7018cfadb4cfe147a747d2f2d.tar.gz
rails-5a0e583f40e0e1e7018cfadb4cfe147a747d2f2d.tar.bz2
rails-5a0e583f40e0e1e7018cfadb4cfe147a747d2f2d.zip
fix some typos in AS
Diffstat (limited to 'activesupport/test/descendants_tracker_with_autoloading_test.rb')
-rw-r--r--activesupport/test/descendants_tracker_with_autoloading_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/test/descendants_tracker_with_autoloading_test.rb b/activesupport/test/descendants_tracker_with_autoloading_test.rb
index ab1be296f8..a2ae066a21 100644
--- a/activesupport/test/descendants_tracker_with_autoloading_test.rb
+++ b/activesupport/test/descendants_tracker_with_autoloading_test.rb
@@ -6,7 +6,7 @@ require 'descendants_tracker_test_cases'
class DescendantsTrackerWithAutoloadingTest < ActiveSupport::TestCase
include DescendantsTrackerTestCases
- def test_clear_with_autoloaded_parent_children_and_granchildren
+ def test_clear_with_autoloaded_parent_children_and_grandchildren
mark_as_autoloaded(*ALL) do
ActiveSupport::DescendantsTracker.clear
ALL.each do |k|
@@ -15,7 +15,7 @@ class DescendantsTrackerWithAutoloadingTest < ActiveSupport::TestCase
end
end
- def test_clear_with_autoloaded_children_and_granchildren
+ def test_clear_with_autoloaded_children_and_grandchildren
mark_as_autoloaded Child1, Grandchild1, Grandchild2 do
ActiveSupport::DescendantsTracker.clear
assert_equal_sets [Child2], Parent.descendants
@@ -23,7 +23,7 @@ class DescendantsTrackerWithAutoloadingTest < ActiveSupport::TestCase
end
end
- def test_clear_with_autoloaded_granchildren
+ def test_clear_with_autoloaded_grandchildren
mark_as_autoloaded Grandchild1, Grandchild2 do
ActiveSupport::DescendantsTracker.clear
assert_equal_sets [Child1, Child2], Parent.descendants