Class: Mongoid::Matchers::Ne
- Defined in:
- lib/mongoid/matchers/ne.rb
Overview
Performs non-equivalency checks.
Instance Attribute Summary
Attributes inherited from Default
Instance Method Summary collapse
-
#matches?(value) ⇒ true, false
Return true if the attribute and first value are not equal.
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 and first value are not equal.
16 17 18 |
# File 'lib/mongoid/matchers/ne.rb', line 16 def matches?(value) @attribute != value.values.first end |