Sha256: bda3bc784aceb0b2bf4a09150abc87310a26e452fbe8e733e826d31f2c432305
Contents?: true
Size: 973 Bytes
Versions: 21
Compression:
Stored size: 973 Bytes
Contents
require File.expand_path("#{File.dirname(__FILE__)}/../../../spec_helper") module RR module Expectations describe TimesCalledExpectation do context "when using a ProcMatcher" do include_examples "RR::Expectations::TimesCalledExpectation" before do stub(subject).foobar.times(lambda {|value| value == 2}) end describe "#verify" do it "passes after attempt! called 2 times" do subject.foobar subject.foobar RR.verify end it "fails after attempt! called 1 time" do subject.foobar expect { RR.verify }.to raise_error(RR::Errors::TimesCalledError) end it "fails after attempt! called 3 times" do subject.foobar subject.foobar subject.foobar expect { RR.verify }.to raise_error(RR::Errors::TimesCalledError) end end end end end end
Version data entries
21 entries across 21 versions & 1 rubygems