Sha256: e448277dc76eb6f0489fd4d498e48df20617804259f6b7b0a68cde959bb96ca7
Contents?: true
Size: 1.19 KB
Versions: 32
Compression:
Stored size: 1.19 KB
Contents
require 'spec_helper' module Spec module Mocks describe "mock failure" do it "should tell you when it receives the right message with the wrong args" do m = mock("foo") m.should_receive(:bar).with("message") lambda { m.bar("different message") }.should raise_error(Spec::Mocks::MockExpectationError, %Q{Mock "foo" received :bar with unexpected arguments\n expected: ("message")\n got: ("different message")}) m.bar("message") # allows the spec to pass end it "should tell you when it receives the right message with the wrong args if you stub the method" do pending("fix bug 15719") # NOTE - for whatever reason, if you use a the block style of pending here, # rcov gets unhappy. Don't know why yet. m = mock("foo") m.stub!(:bar) m.should_receive(:bar).with("message") lambda { m.bar("different message") }.should raise_error(Spec::Mocks::MockExpectationError, %Q{Mock "foo" received :bar with unexpected arguments\n expected: ("message")\n got: ("different message")}) m.bar("message") # allows the spec to pass end end end end
Version data entries
32 entries across 32 versions & 11 rubygems