Sha256: 023804d4e54ca660402a6949fd29d9800389b09e3cc844b863e453e10ab262e4
Contents?: true
Size: 324 Bytes
Versions: 26
Compression:
Stored size: 324 Bytes
Contents
module RR module TimesCalledMatchers #:nodoc: 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
26 entries across 26 versions & 2 rubygems