method
example_pending
example_pending(example, ignore, message="Not Yet Implemented")
private
Hide source
# File lib/spec/runner/reporter.rb, line 154 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