class Shoulda::Matchers::Doublespeak::Double

def initialize(world, klass, method_name, implementation)

def initialize(world, klass, method_name, implementation)
  @world = world
  @klass = klass
  @method_name = method_name
  @implementation = implementation
  @activated = false
  @calls = []
  if world.doubles_activated?
    activate
  end
end