Class: Mongoid::Matchers::Exists
- Defined in:
- lib/mongoid/matchers/exists.rb
Overview
Checks for existance.
Instance Attribute Summary
Attributes inherited from Default
Instance Method Summary collapse
-
#matches?(value) ⇒ true, false
Return true if the attribute exists and checking for existence or return true if the attribute does not exist and checking for non-existence.
Methods inherited from Default
Constructor Details
This class inherits a constructor from Mongoid::Matchers::Default
Instance Method Details
#matches?(value) ⇒ true, false
Return true if the attribute exists and checking for existence or return true if the attribute does not exist and checking for non-existence.
18 19 20 |
# File 'lib/mongoid/matchers/exists.rb', line 18 def matches?(value) @attribute.nil? != value.values.first end |