class RSpec::Mocks::ProxyForNil

@private

def add_message_expectation(method_name, opts={}, &block)

def add_message_expectation(method_name, opts={}, &block)
  warn(method_name) if warn_about_expectations?
  super
end

def add_negative_message_expectation(location, method_name, &implementation)

def add_negative_message_expectation(location, method_name, &implementation)
  warn(method_name) if warn_about_expectations?
  super
end

def add_stub(method_name, opts={}, &implementation)

def add_stub(method_name, opts={}, &implementation)
  warn(method_name) if warn_about_expectations?
  super
end

def initialize(order_group)

def initialize(order_group)
  @warn_about_expectations = true
  super(nil, order_group)
end

def warn method_name

def warn method_name
  source = CallerFilter.first_non_rspec_line
  Kernel.warn("An expectation of :#{method_name} was set on nil. Called from #{source}. Use allow_message_expectations_on_nil to disable warnings.")
end