Class: Mongoid::Matchers::All

Inherits:
Default show all
Defined in:
lib/mongoid/matchers/all.rb

Instance Method Summary collapse

Methods inherited from Default

#initialize

Constructor Details

This class inherits a constructor from Mongoid::Matchers::Default

Instance Method Details

#matches?(value) ⇒ Boolean

Return true if the attribute and first value in the hash are equal.

Returns:



6
7
8
# File 'lib/mongoid/matchers/all.rb', line 6

def matches?(value)
  @attribute == value.values.first
end