Class: Minitest::LineReporter
- Inherits:
-
Reporter
- Object
- Reporter
- Minitest::LineReporter
- Defined in:
- lib/maxitest/vendor/line.rb
Instance Method Summary collapse
-
#initialize ⇒ LineReporter
constructor
A new instance of LineReporter.
- #record(result) ⇒ Object
- #report ⇒ Object
Constructor Details
#initialize ⇒ LineReporter
Returns a new instance of LineReporter.
71 72 73 74 |
# File 'lib/maxitest/vendor/line.rb', line 71 def initialize(*) super @failures = [] end |
Instance Method Details
#record(result) ⇒ Object
76 77 78 79 80 |
# File 'lib/maxitest/vendor/line.rb', line 76 def record(result) if !result.skipped? && !result.passed? @failures << result end end |
#report ⇒ Object
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/maxitest/vendor/line.rb', line 82 def report return unless @failures.any? io.puts io.puts "Focus on failing tests:" pwd = Pathname.new(Dir.pwd) @failures.each do |res| meth = res.method(res.name) file, line = meth.source_location if file file = Pathname.new(file) file = file.relative_path_from(pwd) if file.absolute? output = "mtest #{file}:#{line}" output = "\e[31m#{output}\e[0m" if $stdout.tty? io.puts output end end end |