Sha256: b32734c79ba20e1a869b41de42b0526b4caf3a9cdd2ab5df79ad71a99891d516
Contents?: true
Size: 1.99 KB
Versions: 4
Compression:
Stored size: 1.99 KB
Contents
require File.dirname(__FILE__) + '/../../spec_helper.rb' module Spec module Mocks context "TwiceCounts" do setup do @mock = Mock.new("test mock", { :auto_verify => false }) end specify "twice should fail when call count is higher than expected" do @mock.should_receive(:random_call).twice @mock.random_call @mock.random_call @mock.random_call lambda do @mock.__verify end.should_raise(MockExpectationError) end specify "twice should fail when call count is lower than expected" do @mock.should_receive(:random_call).twice @mock.random_call lambda do @mock.__verify end.should_raise(MockExpectationError) end specify "twice should fail when called twice with wrong args on the first call" do @mock.should_receive(:random_call).twice.with("1", 1) lambda do @mock.random_call(1, "1") end.should_raise(MockExpectationError) end specify "twice should fail when called twice with wrong args on the second call" do @mock.should_receive(:random_call).twice.with("1", 1) @mock.random_call("1", 1) lambda do @mock.random_call(1, "1") end.should_raise(MockExpectationError) end specify "twice should pass when called twice" do @mock.should_receive(:random_call).twice @mock.random_call @mock.random_call @mock.__verify end specify "twice should pass when called twice with specified args" do @mock.should_receive(:random_call).twice.with("1", 1) @mock.random_call("1", 1) @mock.random_call("1", 1) @mock.__verify end specify "twice should pass when called twice with unspecified args" do @mock.should_receive(:random_call).twice @mock.random_call("1") @mock.random_call(1) @mock.__verify end end end end
Version data entries
4 entries across 4 versions & 2 rubygems