# File lib/rr/times_called_matchers/integer_matcher.rb, line 14 def attempt?(times_called) times_called < @times end
# File lib/rr/times_called_matchers/integer_matcher.rb, line 10 def matches?(times_called) times_called == @times end
# File lib/rr/times_called_matchers/integer_matcher.rb, line 6 def possible_match?(times_called) times_called <= @times end