module RSpec::Mocks::VerifyingDouble

def method_missing(message, *args, &block)

def method_missing(message, *args, &block)
  # Null object conditional is an optimization. If not a null object,
  # validity of method expectations will have been checked at definition
  # time.
  __mock_proxy.ensure_implemented(message) if null_object?
  super
end