method
example_pending
1.3.1 -
Show latest stable
- Class:
Spec::Runner::Reporter
example_pending(example, ignore, message="Not Yet Implemented")private
No documentation available.
# 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