Method: Chef::Node#==

Defined in:
lib/chef/node.rb

#==(other) ⇒ Object



700
701
702
703
704
705
706
# File 'lib/chef/node.rb', line 700

def ==(other)
  if other.is_a?(self.class)
    name == other.name
  else
    false
  end
end