Sha256: 1574e2ee7c12c45a876cca64c2f43a3748f27ed2344d6a55cd1081d4eb3acfa5

Contents?: true

Size: 1.77 KB

Versions: 43

Compression:

Stored size: 1.77 KB

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, stubs_and_options={})
        @name = name
        @options = parse_options(stubs_and_options)
        assign_stubs(stubs_and_options)
      end
      
      # This allows for comparing the mock to other objects that proxy such as
      # ActiveRecords belongs_to proxy objects By making the other object run
      # the comparison, we're sure the call gets delegated to the proxy target
      # This is an unfortunate side effect from ActiveRecord, but this should
      # be safe unless the RHS redefines == in a nonsensical manner
      def ==(other)
        other == __mock_proxy
      end

      def method_missing(sym, *args, &block)
        __mock_proxy.instance_eval {@messages_received << [sym, args, block]}
        begin
          return self if __mock_proxy.null_object?
          super(sym, *args, &block)
        rescue NameError
          __mock_proxy.raise_unexpected_message_error sym, *args
        end
      end
      
      def inspect
        "#<#{self.class}:#{sprintf '0x%x', self.object_id} @name=#{@name.inspect}>"
      end
      
      def to_s
        inspect.gsub('<','[').gsub('>',']')
      end
      
      private
      
        def parse_options(options)
          options.has_key?(:null_object) ? {:null_object => options.delete(:null_object)} : {}
        end
        
        def assign_stubs(stubs)
          stubs.each_pair do |message, response|
            stub!(message).and_return(response)
          end
        end
    end
  end
end

Version data entries

43 entries across 43 versions & 8 rubygems

Version Path
dchelimsky-rspec-1.1.10 lib/spec/mocks/mock.rb
dchelimsky-rspec-1.1.11.1 lib/spec/mocks/mock.rb
dchelimsky-rspec-1.1.11.2 lib/spec/mocks/mock.rb
dchelimsky-rspec-1.1.11.3 lib/spec/mocks/mock.rb
dchelimsky-rspec-1.1.11.4 lib/spec/mocks/mock.rb
dchelimsky-rspec-1.1.11.5 lib/spec/mocks/mock.rb
dchelimsky-rspec-1.1.11.6 lib/spec/mocks/mock.rb
dchelimsky-rspec-1.1.11.7 lib/spec/mocks/mock.rb
dchelimsky-rspec-1.1.11 lib/spec/mocks/mock.rb
jnstq-acts_as_sms-0.1.0 test/vendor/plugins/rspec/lib/spec/mocks/mock.rb
jnstq-acts_as_sms-0.1.1 test/vendor/plugins/rspec/lib/spec/mocks/mock.rb
jnstq-acts_as_sms-0.1.3 test/vendor/plugins/rspec/lib/spec/mocks/mock.rb
jnstq-acts_as_sms-0.1.4 test/vendor/plugins/rspec/lib/spec/mocks/mock.rb
merb-core-1.1.3 spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/mock.rb
merb-core-1.1.2 spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/mock.rb
merb-core-1.1.1 spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/mock.rb
merb-core-1.1.0 spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/mock.rb
merb-core-1.1.0.rc1 spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/mock.rb
merb-core-1.1.0.pre spec10/public/webrat/test_app/gems/gems/rspec-1.1.11/lib/spec/mocks/mock.rb
mack-0.8.2 lib/gems/rspec-1.1.11/lib/spec/mocks/mock.rb