Sha256: 1c9e346dcfadf95afdbcdb9fdd52cf64344f581eeff6cede5acd1e433afd45f4
Contents?: true
Size: 1.02 KB
Versions: 4
Compression:
Stored size: 1.02 KB
Contents
require 'spec_helper' module Rspec module Mocks describe "AnyNumberOfTimes" do before(:each) do @mock = Rspec::Mocks::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 it "should return the mocked value when called after a similar stub" do @mock.stub(:message).and_return :stub_value @mock.should_receive(:message).any_number_of_times.and_return(:mock_value) @mock.message.should == :mock_value @mock.message.should == :mock_value end end end end
Version data entries
4 entries across 4 versions & 1 rubygems