| Class | RR::WildcardMatchers::IsA |
| In: |
lib/rr/wildcard_matchers/is_a.rb
|
| Parent: | Object |
| klass | [R] |
# File lib/rr/wildcard_matchers/is_a.rb, line 18
18: def ==(other)
19: return false unless other.is_a?(self.class)
20: self.klass == other.klass
21: end