# File lib/puppet/resource.rb, line 124 124: def ==(other) 125: return false unless other.respond_to?(:title) and self.type == other.type and self.title == other.title 126: 127: return false unless to_hash == other.to_hash 128: true 129: end