Class: Minitest::Reporters::SpecReporter
- Inherits:
-
BaseReporter
- Object
- StatisticsReporter
- BaseReporter
- Minitest::Reporters::SpecReporter
- Includes:
- Minitest::RelativePosition, ANSI::Code
- Defined in:
- lib/minitest/reporters/spec_reporter.rb
Overview
Turn-like reporter that reads like a spec.
Based upon TwP's turn (MIT License) and paydro's monkey-patch.
Constant Summary
Constants included from Minitest::RelativePosition
Minitest::RelativePosition::INFO_PADDING, Minitest::RelativePosition::MARK_SIZE, Minitest::RelativePosition::TEST_PADDING, Minitest::RelativePosition::TEST_SIZE
Instance Attribute Summary
Attributes inherited from BaseReporter
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ SpecReporter
constructor
The constructor takes an
options
hash. - #record(test)
- #report
- #start
Methods included from ANSI::Code
Methods inherited from BaseReporter
#add_defaults, #after_test, #before_test
Constructor Details
#initialize(options = {}) ⇒ SpecReporter
The constructor takes an options
hash
20 21 22 23 24 |
# File 'lib/minitest/reporters/spec_reporter.rb', line 20 def initialize( = {}) super @print_failure_summary = [:print_failure_summary] @suppress_inline_failure_output = [:suppress_inline_failure_output] end |
Instance Method Details
#record(test)
53 54 55 56 57 |
# File 'lib/minitest/reporters/spec_reporter.rb', line 53 def record(test) super record_print_status(test) record_print_failures_if_any(test) if @suppress_inline_failure_output end |
#report
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/minitest/reporters/spec_reporter.rb', line 32 def report super if @print_failure_summary failed_test_groups = tests.reject { |test| test.failures.empty? } .sort_by { |test| [test_class(test).to_s, test.name] } .group_by { |test| test_class(test).to_s } unless failed_test_groups.empty? print(red('Failures and errors:')) failed_test_groups.each { |name, tests| print_failure(name, tests) } end end puts('Finished in %.5fs' % total_time) print('%d tests, %d assertions, ' % [count, assertions]) color = failures.zero? && errors.zero? ? :green : :red print(send(color) { '%d failures, %d errors, ' } % [failures, errors]) print(yellow { '%d skips' } % skips) puts end |
#start
26 27 28 29 30 |
# File 'lib/minitest/reporters/spec_reporter.rb', line 26 def start super puts('Started with run options %s' % [:args]) puts end |