Class: Humanoid::Matchers::In

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

Instance Method Summary collapse

Methods inherited from Default

#initialize

Constructor Details

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

Instance Method Details

#matches?(value) ⇒ Boolean

Return true if the attribute is in the values.

Returns:



6
7
8
# File 'lib/humanoid/matchers/in.rb', line 6

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