method

dump_pending

rspec latest stable - Class: Spec::Runner::Formatter::BaseTextFormatter
dump_pending()
public

No documentation available.

# File lib/spec/runner/formatter/base_text_formatter.rb, line 73
        def dump_pending
          unless @pending_examples.empty?
            @output.puts
            @output.puts "Pending:"
            @pending_examples.each do |pending_example|
              @output.puts "\n#{pending_example[0]} (#{pending_example[1]})"
              @output.puts "#{pending_example[2]}\n"
            end
          end
          @output.flush
        end