aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionview/lib/action_view/testing/assertions/dom.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/actionview/lib/action_view/testing/assertions/dom.rb b/actionview/lib/action_view/testing/assertions/dom.rb
index 556b70a196..d290591fcc 100644
--- a/actionview/lib/action_view/testing/assertions/dom.rb
+++ b/actionview/lib/action_view/testing/assertions/dom.rb
@@ -49,9 +49,8 @@ module ActionView
end
end
- # +attributes_are_equal?+ sorts elements attributes by name and compares
- # each attribute by calling +equal_attribute?+
- # If those are +true+ the attributes are considered equal
+ # +equal_attribute_nodes?+ sorts attribute nodes by name and compares
+ # each by calling +equal_attribute?+
def equal_attribute_nodes?(nodes, other_nodes)
return false unless nodes.size == other_nodes.size
nodes = nodes.sort_by(&:name)