Sha256: ba52421d0a997e36c4f4ddb6be4fc4208119c2dad88a05ad81ffa19268e0c1e7
Contents?: true
Size: 751 Bytes
Versions: 45
Compression:
Stored size: 751 Bytes
Contents
require File.dirname(__FILE__) + '/../../spec_helper.rb' module Spec module Mocks describe "AnyNumberOfTimes" do before(:each) do @mock = Mock.new("test mock") end it "should pass if any number of times method is called many times" do @mock.should_receive(:random_call).any_number_of_times (1..10).each do @mock.random_call end end it "should pass if any number of times method is called once" do @mock.should_receive(:random_call).any_number_of_times @mock.random_call end it "should pass if any number of times method is not called" do @mock.should_receive(:random_call).any_number_of_times end end end end
Version data entries
45 entries across 45 versions & 8 rubygems