class LinkCheck::XpathFunctions

Public Instance Methods

case_sensitive_equals(node_set, str_to_match) click to toggle source
# File lib/html-proofer/check/links.rb, line 166
def case_sensitive_equals(node_set, str_to_match)
  node_set.find_all { |node| node.to_s.== str_to_match.to_s }
end