Sha256: fdef6cf774e49b2c90124a7ce2dedb1d89f883085e8d3f192fd95be319c3feb3

Contents?: true

Size: 673 Bytes

Versions: 4

Compression:

Stored size: 673 Bytes

Contents

describe "Double" do
  let(:test_double) { double }

  specify "when one example has an expectation inside the block passed to should_receive" do
    test_double.should_receive(:msg) do |arg|
      arg.should be_true #this call exposes the problem
    end
    begin
      test_double.msg(false)
    rescue Exception
    end
  end
  
  specify "then the next example should behave as expected instead of saying" do
    test_double.should_receive(:foobar)
    test_double.foobar
    test_double.rspec_verify
    begin
      test_double.foobar
    rescue Exception => e
      e.message.should == "Double received unexpected message :foobar with (no args)"
    end
  end 
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rspec-mocks-2.6.0 spec/rspec/mocks/bug_report_10263_spec.rb
rspec-mocks-2.6.0.rc6 spec/rspec/mocks/bug_report_10263_spec.rb
rspec-mocks-2.6.0.rc4 spec/rspec/mocks/bug_report_10263_spec.rb
rspec-mocks-2.6.0.rc2 spec/rspec/mocks/bug_report_10263_spec.rb