# File lib/ci/reporter/minitest.rb, line 61 def initialize super @report_manager = ReportManager.new("test") end
# File lib/ci/reporter/minitest.rb, line 66 def _run_anything(type) suites = MiniTest::Unit::TestCase.send "#{type}_suites" return if suites.empty? started_anything type sync = output.respond_to? :"sync=" # stupid emacs old_sync, output.sync = output.sync, true if sync _run_suites(suites, type) output.sync = old_sync if sync finished_anything(type) end
# File lib/ci/reporter/minitest.rb, line 86 def _run_suite(suite, type) start_suite(suite) header = "#{type}_suite_header" puts send(header, suite) if respond_to? header filter_suite_methods(suite, type).each do |method| _run_test(suite, method) end finish_suite end
# File lib/ci/reporter/minitest.rb, line 82 def _run_suites(suites, type) suites.map { |suite| _run_suite suite, type } end
# File lib/ci/reporter/minitest.rb, line 99 def _run_test(suite, method) start_case(method) result = run_test(suite, method) @assertion_count += result._assertions @test_count += 1 finish_case end
# File lib/ci/reporter/minitest.rb, line 110 def puke(klass, meth, e) e = case e when MiniTest::Skip then @skips += 1 fault(e, :skip) return "S" unless @verbose "Skipped:\n#{meth}(#{klass}) [#{location e}]:\n#{e.message}\n" when MiniTest::Assertion then @failures += 1 fault(e, :failure, meth) "Failure:\n#{meth}(#{klass}) [#{location e}]:\n#{e.message}\n" else @errors += 1 fault(e, :error) bt = MiniTest::filter_backtrace(e.backtrace).join "\n " "Error:\n#{meth}(#{klass}):\n#{e.class}: #{e.message}\n #{bt}\n" end @report << e e[0, 1] end