Method: CukeSniffer::Formatter.output_min_html
- Defined in:
- lib/cuke_sniffer/formatter.rb
.output_min_html(cuke_sniffer, file_name = DEFAULT_OUTPUT_FILE_NAME) ⇒ Object
Creates a html file with minimum information: Summary, Rules, Improvement List. file_name defaults to “cuke_sniffer_results.html” unless specified Second parameter used for passing into the markup.
cuke_sniffer.output_min_html
Or
cuke_sniffer.output_min_html("results01-01-0001.html")
83 84 85 |
# File 'lib/cuke_sniffer/formatter.rb', line 83 def self.output_min_html(cuke_sniffer, file_name = DEFAULT_OUTPUT_FILE_NAME) output_html(cuke_sniffer, file_name, "min_template") end |