Sha256: 09fa75b96396a19a6751a3ddd58d0bcc62efc076c932892df95eb069ca6acfe9

Contents?: true

Size: 922 Bytes

Versions: 9

Compression:

Stored size: 922 Bytes

Contents

module Shoulda
  module Matchers
    module Doublespeak
      # @private
      class ObjectDouble < BasicObject
        attr_reader :calls

        def initialize
          @calls = []
          @calls_by_method_name = {}
        end

        def calls_to(method_name)
          @calls_by_method_name[method_name] || []
        end

        def respond_to?(_name, _include_private = nil)
          true
        end

        def respond_to_missing?(_name, _include_all)
          true
        end

        def method_missing(method_name, *args, &block)
          call = MethodCall.new(
            method_name: method_name,
            args: args,
            block: block,
            caller: ::Kernel.caller
          )
          calls << call
          (calls_by_method_name[method_name] ||= []) << call
          nil
        end

        protected

        attr_reader :calls_by_method_name
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
shoulda-matchers-4.4.1 lib/shoulda/matchers/doublespeak/object_double.rb
shoulda-matchers-4.4.0 lib/shoulda/matchers/doublespeak/object_double.rb
shoulda-matchers-4.3.0 lib/shoulda/matchers/doublespeak/object_double.rb
shoulda-matchers-4.2.0 lib/shoulda/matchers/doublespeak/object_double.rb
shoulda-matchers-4.1.2 lib/shoulda/matchers/doublespeak/object_double.rb
shoulda-matchers-4.1.1 lib/shoulda/matchers/doublespeak/object_double.rb
shoulda-matchers-4.1.0 lib/shoulda/matchers/doublespeak/object_double.rb
shoulda-matchers-4.0.1 lib/shoulda/matchers/doublespeak/object_double.rb
shoulda-matchers-4.0.0.rc1 lib/shoulda/matchers/doublespeak/object_double.rb