class Kitchen::Driver::Dokken::PartialHash

Public Instance Methods

==(other) click to toggle source
# File lib/kitchen/driver/dokken.rb, line 124
def ==(other)
  other.is_a?(Hash) && all? { |key, val| other.key?(key) && other[key] == val }
end