Sha256: 843254724cc6c452841e72ef434e0f5f53275f05233cbebcede84b85e6ddc10e

Contents?: true

Size: 877 Bytes

Versions: 2

Compression:

Stored size: 877 Bytes

Contents

require File.dirname(__FILE__) + '/spec_helper'

context "A consumer of a mock" do
  specify "should be able to send messages to the mock" do
    mock = mock("poke me")
    mock.should_receive(:poke)
    mock.poke
  end
end

context "a mock" do
  specify "should be able to mock the same message twice w/ different args" do
    mock = mock("mock")
    mock.should_receive(:msg).with(:arg1).and_return(:val1)
    mock.should_receive(:msg).with(:arg2).and_return(:val2)
    mock.msg(:arg1).should_eql(:val1)
    mock.msg(:arg2).should_eql(:val2)
  end

  specify "should be able to mock the same message twice w/ different args in reverse order" do
    mock = mock("mock")
    mock.should_receive(:msg).with(:arg1).and_return(:val1)
    mock.should_receive(:msg).with(:arg2).and_return(:val2)
    mock.msg(:arg2).should_eql(:val2)
    mock.msg(:arg1).should_eql(:val1)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rspec-0.7.5 examples/mocking_example.rb
rspec-0.7.5.1 examples/mocking_example.rb