class Spec::Runner::Reporter

def example_pending(example, ignore, message="Not Yet Implemented")

def example_pending(example, ignore, message="Not Yet Implemented")
  @pending_count += 1
  formatters.each do |formatter|
    if formatter_uses_deprecated_example_pending_method?(formatter)
      Spec.warn EXAMPLE_PENDING_DEPRECATION_WARNING
      formatter.example_pending(example, message, example.location)
    else
      formatter.example_pending(example, message)
    end
  end
end