class RSpec::HtmlMatchers::NokogiriTextHelper
@private
@api
def content node_set
def content node_set node_set.find_all do |node| actual_content = node.content.gsub(NON_BREAKING_SPACE, ' ') actual_content == @text end end
def initialize text
def initialize text @text = text end