Sha256: ee4d4dee37326336a86d5ce158001d2084a867ccf43eef6f01da779b70f9a08b

Contents?: true

Size: 1.23 KB

Versions: 11

Compression:

Stored size: 1.23 KB

Contents

module Minitest
  module Reporters
    # Simple reporter designed for RubyMate.
    class RubyMateReporter < BaseReporter
      include RelativePosition

      INFO_PADDING = 2

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

      def record(test)
        super
        if test.skipped?
          print 'SKIP'
          print_test_with_time(test)
          puts
          puts
        elsif test.error?
          print 'ERROR'
          print_test_with_time(test)
          puts
          print_info(test.failure)
          puts
        elsif test.failure
          print 'FAIL'
          print_test_with_time(test)
          puts
          print_info(test.failure, false)
          puts
        end
      end

      def report
        super
        puts
        puts('Finished in %.5fs' % total_time)
        print('%d tests, %d assertions, ' % [count, assertions])
        print('%d failures, %d errors, ' % [failures, errors])
        print('%d skips' % skips)
        puts
      end

      private

      def print_test_with_time(test)
        print(" #{test.class}##{test.name} (%.2fs)" % test.time)
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
minitest-reporters-1.3.6 lib/minitest/reporters/ruby_mate_reporter.rb
nullifyable-0.1.0 vendor/bundle/gems/minitest-reporters-1.3.5/lib/minitest/reporters/ruby_mate_reporter.rb
minitest-reporters-1.3.5 lib/minitest/reporters/ruby_mate_reporter.rb
minitest-reporters-1.3.5.beta1 lib/minitest/reporters/ruby_mate_reporter.rb
minitest-reporters-1.3.4 lib/minitest/reporters/ruby_mate_reporter.rb
minitest-reporters-1.3.3 lib/minitest/reporters/ruby_mate_reporter.rb
minitest-reporters-1.3.2 lib/minitest/reporters/ruby_mate_reporter.rb
minitest-reporters-1.3.2.beta2 lib/minitest/reporters/ruby_mate_reporter.rb
minitest-reporters-1.3.2.beta1 lib/minitest/reporters/ruby_mate_reporter.rb
minitest-reporters-1.3.1 lib/minitest/reporters/ruby_mate_reporter.rb
minitest-reporters-1.3.1.beta1 lib/minitest/reporters/ruby_mate_reporter.rb