Sha256: aefbc7249b3507f87eb953010161aa4eb22b0d568916eccda8c62e1dd2579471

Contents?: true

Size: 295 Bytes

Versions: 19

Compression:

Stored size: 295 Bytes

Contents

module RR
module TimesCalledMatchers
  class AtLeastMatcher < TimesCalledMatcher
    include NonTerminal
    
    def matches?(times_called)
      times_called >= @times
    end

    protected
    def expected_message_part
      "Expected at least #{@times.inspect} times."
    end
  end
end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
rr-0.1.14 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.1.15 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.3.4 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.3.2 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.3.10 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.3.3 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.3.11 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.2.3 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.2.2 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.3.1 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.2.4 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.2.1 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.2.5 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.3.0 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.3.9 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.3.5 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.3.6 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.3.8 lib/rr/times_called_matchers/at_least_matcher.rb
rr-0.3.7 lib/rr/times_called_matchers/at_least_matcher.rb