Sha256: 9a234519153d76e0ffab43519f51be1071b691dfa5ff84d01a7e59d4ac84fced

Contents?: true

Size: 753 Bytes

Versions: 11

Compression:

Stored size: 753 Bytes

Contents

module MiniTest
  module Reporter
    def runner
      Unit.runner
    end

    def filter_backtrace(backtrace)
      MiniTest.filter_backtrace(backtrace)
    end

    def output
      runner.output
    end

    def verbose?
      runner.verbose
    end

    def print(*args)
      runner.output.print(*args)
    end

    def puts(*args)
      runner.output.puts(*args)
    end

    def before_suites(suites, type); end
    def after_suites(suites, type); end
    def before_suite(suite); end
    def after_suite(suite); end
    def before_test(suite, test); end
    def pass(suite, test, test_runner); end
    def skip(suite, test, test_runner); end
    def failure(suite, test, test_runner); end
    def error(suite, test, test_runner); end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
minitest-reporters-0.14.5 lib/minitest/reporter.rb
minitest-reporters-0.14.4 lib/minitest/reporter.rb
minitest-reporters-0.14.3 lib/minitest/reporter.rb
minitest-reporters-0.14.2 lib/minitest/reporter.rb
minitest-reporters-0.14.1 lib/minitest/reporter.rb
minitest-reporters-0.14.0 lib/minitest/reporter.rb
minitest-reporters-0.13.1 lib/minitest/reporter.rb
minitest-reporters-0.13.0 lib/minitest/reporter.rb
minitest-reporters-0.12.2 lib/minitest/reporter.rb
minitest-reporters-0.12.1 lib/minitest/reporter.rb
minitest-reporters-0.12.0 lib/minitest/reporter.rb