Sha256: eac62481830714701072840f57808ec8f0c8cdcad842891a66d921952ddb2f92
Contents?: true
Size: 1.31 KB
Versions: 21
Compression:
Stored size: 1.31 KB
Contents
require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper") module RR module TimesCalledMatchers describe AtLeastMatcher do attr_reader :matcher, :times before do @times = 3 @matcher = AtLeastMatcher.new(times) end describe "#possible_match?" do it "always returns true" do expect(matcher).to be_possible_match(99999) end end describe "#matches?" do it "returns false when times_called less than times" do matcher.should_not be_matches(2) end it "returns true when times_called == times" do expect(matcher).to be_matches(3) end it "returns true when times_called > times" do expect(matcher).to be_matches(4) end end describe "#attempt?" do it "always returns true" do expect(matcher).to be_attempt(1) expect(matcher).to be_attempt(100000) end end describe AnyTimesMatcher, "#terminal?" do it "returns false" do matcher.should_not be_terminal end end describe "#error_message" do it "has an error message" do expect(matcher.error_message(2)).to eq \ "Called 2 times.\nExpected at least 3 times." end end end end end
Version data entries
21 entries across 21 versions & 1 rubygems