Sha256: b5fe5cd797433e4a3f3866aa412701991390d9600a3003a2446ff805081668a4

Contents?: true

Size: 767 Bytes

Versions: 8

Compression:

Stored size: 767 Bytes

Contents

module Spec
  module Mocks
    class Mock
      include Methods

      # Creates a new mock with a +name+ (that will be used in error messages only)
      # == Options:
      # * <tt>:null_object</tt> - if true, the mock object acts as a forgiving null object allowing any message to be sent to it.
      def initialize(name, options={})
        @name = name
        @options = options
      end

      def method_missing(sym, *args, &block)
        __mock_handler.instance_eval {@messages_received << [sym, args, block]}
        begin
          return self if __mock_handler.null_object?
          super(sym, *args, &block)
        rescue NoMethodError
          __mock_handler.raise_unexpected_message_error sym, *args
        end
      end
      
    end
  end
end

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
puppet-0.22.4 test/lib/spec/mocks/mock.rb
puppet-0.23.0 test/lib/spec/mocks/mock.rb
puppet-0.23.2 test/lib/spec/mocks/mock.rb
puppet-0.23.1 test/lib/spec/mocks/mock.rb
riess-0.0.8 vendor/rspec-0.8.2/lib/spec/mocks/mock.rb
rspec-0.8.1 lib/spec/mocks/mock.rb
rspec-0.8.0 lib/spec/mocks/mock.rb
rspec-0.8.2 lib/spec/mocks/mock.rb