| Class | RR::TimesCalledMatchers::NeverMatcher |
| In: |
lib/rr/times_called_matchers/never_matcher.rb
|
| Parent: | TimesCalledMatcher |
# File lib/rr/times_called_matchers/never_matcher.rb, line 18
18: def attempt?(times_called)
19: raise RR::Errors::TimesCalledError, error_message(1)
20: end
# File lib/rr/times_called_matchers/never_matcher.rb, line 14
14: def matches?(times_called)
15: true
16: end