method
dump_pending
1.1.4 -
Show latest stable
- Class:
Spec::Runner::Formatter::BaseTextFormatter
dump_pending()public
No documentation available.
# File lib/spec/runner/formatter/base_text_formatter.rb, line 72
def dump_pending
unless @pending_examples.empty?
@output.puts
@output.puts "Pending:"
@pending_examples.each do |pending_example|
@output.puts "#{pending_example[0]} (#{pending_example[1]})"
end
end
@output.flush
end