Method: Kaiseki::FilterResult#eql?
- Defined in:
- lib/result_filter.rb
#eql?(other) ⇒ Boolean Also known as: ==
11 12 13 |
# File 'lib/result_filter.rb', line 11 def eql? other other.is_a?(self.class) and other.expected == @expected and other.block == @block end |