Class | RR::WildcardMatchers::Satisfy |
In: |
lib/rr/wildcard_matchers/satisfy.rb
|
Parent: | Object |
expectation_proc | [R] |
# File lib/rr/wildcard_matchers/satisfy.rb, line 6 6: def initialize(expectation_proc) 7: @expectation_proc = expectation_proc 8: end
# File lib/rr/wildcard_matchers/satisfy.rb, line 19 19: def ==(other) 20: return false unless other.is_a?(self.class) 21: self.expectation_proc == other.expectation_proc 22: end