Class: RSpec::Core::Formatters::TextMateFormatter::NonEscapingHtmlPrinter

Inherits:
HtmlPrinter
  • Object
show all
Defined in:
lib/rspec/core/formatters/text_mate_formatter.rb

Constant Summary

Constant Summary

Constants inherited from HtmlPrinter

HtmlPrinter::GLOBAL_SCRIPTS, HtmlPrinter::GLOBAL_STYLES, HtmlPrinter::HTML_HEADER, HtmlPrinter::REPORT_HEADER

Instance Method Summary (collapse)

Methods inherited from HtmlPrinter

#flush, #initialize, #make_example_group_header_red, #make_example_group_header_yellow, #make_header_red, #make_header_yellow, #move_progress, #print_example_group_end, #print_example_group_start, #print_example_passed, #print_example_pending, #print_html_start, #print_summary

Constructor Details

This class inherits a constructor from RSpec::Core::Formatters::HtmlPrinter

Instance Method Details

10
11
12
13
# File 'lib/rspec/core/formatters/text_mate_formatter.rb', line 10
def print_example_failed(pending_fixed, description, run_time, failure_id, exception, extra_content, escape_backtrace = false)
  # Call implementation from superclass, but ignore `escape_backtrace` and always pass `false` instead.
  super(pending_fixed, description, run_time, failure_id, exception, extra_content, false)
end