Skip to content

Instantly share code, notes, and snippets.

@davidwessman
Last active August 4, 2021 06:53
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidwessman/09a13840a8a80080e3842ac3051714c7 to your computer and use it in GitHub Desktop.
Save davidwessman/09a13840a8a80080e3842ac3051714c7 to your computer and use it in GitHub Desktop.
module Minitest
module Reporters
# Based on https://github.com/kern/minitest-reporters/blob/master/lib/minitest/reporters/progress_reporter.rb
# Tries to adhere to https://testanything.org/tap-specification.html
class TapReporter < DefaultReporter
def report
super
puts("TAP version 13")
puts("1..#{tests.length}")
tests.each_with_index do |test, index|
test_str = "#{test_class(test)} - #{test.name.tr("#", "_")}"
if test.passed?
puts "ok #{index + 1} - #{test_str}"
elsif test.skipped?
puts "ok #{index + 1} # skip: #{test_str}"
elsif test.failure.present?
puts "not ok #{index + 1} - failed: #{test_str}"
message_for(test).each_line do |line|
print_padded_comment(line)
end
unless test.failure.is_a?(MiniTest::UnexpectedError)
trace = filter_backtrace(test.failure.backtrace)
trace.each do |line|
print_padded_comment(line)
end
end
puts
end
end
end
private
def print_padded_comment(line)
puts "##{pad(line)}"
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment