class Nokogiri::XML::Node

def ==(other)

Test to see if this Node is equal to +other+
##
def ==(other)
  return false unless other
  return false unless other.respond_to?(:pointer_id)
  pointer_id == other.pointer_id
end