module Rails::Dom::Testing::Assertions::DomAssertions

def extract_children(node, strict)

def extract_children(node, strict)
  if strict
    node.children
  else
    node.children.reject { |n| n.text? && n.text.blank? }
  end
end