# File lib/facon/mock.rb, line 25
    def method_missing(method, *args, &block)
      super(method, *args, &block)
    rescue NameError
      # An unexpected method was called on this mock.
      mock_proxy.raise_unexpected_message_error(method, *args)
    end