Sha256: 64804ec5184443a94987b0d653938098e70787c2eca710a3c4682c274ccb8af5

Contents?: true

Size: 1.49 KB

Versions: 99

Compression:

Stored size: 1.49 KB

Contents

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

module Spec
  module Mocks
    describe "OnceCounts" do
      before(:each) do
        @mock = mock("test mock")
      end

      it "once should fail when called once with wrong args" do
        @mock.should_receive(:random_call).once.with("a", "b", "c")
        lambda do
          @mock.random_call("d", "e", "f")
        end.should raise_error(MockExpectationError)
        @mock.rspec_reset
      end

      it "once should fail when called twice" do
        @mock.should_receive(:random_call).once
        @mock.random_call
        @mock.random_call
        lambda do
          @mock.rspec_verify
        end.should raise_error(MockExpectationError)
      end
      
      it "once should fail when not called" do
        @mock.should_receive(:random_call).once
        lambda do
          @mock.rspec_verify
        end.should raise_error(MockExpectationError)
      end

      it "once should pass when called once" do
        @mock.should_receive(:random_call).once
        @mock.random_call
        @mock.rspec_verify
      end

      it "once should pass when called once with specified args" do
        @mock.should_receive(:random_call).once.with("a", "b", "c")
        @mock.random_call("a", "b", "c")
        @mock.rspec_verify
      end

      it "once should pass when called once with unspecified args" do
        @mock.should_receive(:random_call).once
        @mock.random_call("a", "b", "c")
        @mock.rspec_verify
      end
    end
  end
end

Version data entries

99 entries across 99 versions & 14 rubygems

Version Path
dchelimsky-rspec-1.1.10 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.11.1 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.11.2 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.11.3 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.11.4 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.11.5 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.11.6 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.11.7 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.11 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.12 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.99.1 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.99.13 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.99.2 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.99.3 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.99.4 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.99.5 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.99.6 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.99.7 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.99.8 spec/spec/mocks/once_counts_spec.rb
dchelimsky-rspec-1.1.99.9 spec/spec/mocks/once_counts_spec.rb