Sha256: fea5c0cb2da17fd147f53cbfdb1af5fc610dce2dcf6736f5c8010b11deb1abe8

Contents?: true

Size: 1.29 KB

Versions: 10

Compression:

Stored size: 1.29 KB

Contents

module Minitest
  module Reporters
    # Turn-like reporter that reads like a spec.
    #
    # Based upon TwP's turn (MIT License) and paydro's monkey-patch.
    #
    # @see https://github.com/TwP/turn turn
    # @see https://gist.github.com/356945 paydro's monkey-patch
    class SpecReporter < BaseReporter
      include ANSI::Code
      include RelativePosition

      def start
        super
        puts('Started with run options %s' % options[:args])
        puts
      end

      def report
        super
        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

      def record(test)
        super
        test.name.gsub!(/^test_:/, 'test:')
        print pad_test(test.name)
        print_colored_status(test)
        print(" (%.2fs)" % test.time) unless test.time.nil?
        puts
        if !test.skipped? && test.failure
          print_info(test.failure)
          puts
        end
      end

      protected

      def before_suite(suite)
        puts suite
      end

      def after_suite(suite)
        puts
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
minitest-reporters-1.1.2 lib/minitest/reporters/spec_reporter.rb
minitest-reporters-1.1.1 lib/minitest/reporters/spec_reporter.rb
minitest-reporters-1.1.0 lib/minitest/reporters/spec_reporter.rb
minitest-reporters-1.1.0.beta3 lib/minitest/reporters/spec_reporter.rb
minitest-reporters-1.1.0.beta2 lib/minitest/reporters/spec_reporter.rb
minitest-reporters-1.1.0.beta1 lib/minitest/reporters/spec_reporter.rb
minitest-reporters-1.0.20 lib/minitest/reporters/spec_reporter.rb
minitest-reporters-1.0.19 lib/minitest/reporters/spec_reporter.rb
minitest-reporters-1.0.18 lib/minitest/reporters/spec_reporter.rb
minitest-reporters-1.0.17 lib/minitest/reporters/spec_reporter.rb