class Shoulda::Matchers::Doublespeak::ObjectDouble
@private
def calls_to(method_name)
def calls_to(method_name) @calls_by_method_name[method_name] || [] end
def initialize
def initialize @calls = [] @calls_by_method_name = {} end
def method_missing(method_name, *args, &block)
def method_missing(method_name, *args, &block) calls << MethodCallWithName.new(method_name, args, block) (calls_by_method_name[method_name] ||= []) << MethodCall.new(args, block) nil end
def respond_to?(name, include_private = nil)
def respond_to?(name, include_private = nil) true end