Class RR::TimesCalledMatchers::AtLeastMatcher
In: lib/rr/times_called_matchers/at_least_matcher.rb
Parent: TimesCalledMatcher

Methods

Included Modules

NonTerminal

Public Instance methods

[Source]

    # File lib/rr/times_called_matchers/at_least_matcher.rb, line 10
10:       def expected_times_message
11:         "at least #{@times.inspect} times"
12:       end

[Source]

   # File lib/rr/times_called_matchers/at_least_matcher.rb, line 6
6:       def matches?(times_called)
7:         times_called >= @times
8:       end

[Validate]