Sha256: bf7317d41b45a2d550a718656788fe4c35cbc32bc8b1886da0ef1006efa324f2

Contents?: true

Size: 790 Bytes

Versions: 19

Compression:

Stored size: 790 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 after_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

19 entries across 19 versions & 1 rubygems

Version Path
minitest-reporters-0.14.24 lib/minitest/reporter.rb
minitest-reporters-0.14.23 lib/minitest/reporter.rb
minitest-reporters-0.14.22 lib/minitest/reporter.rb
minitest-reporters-0.14.21 lib/minitest/reporter.rb
minitest-reporters-0.14.20 lib/minitest/reporter.rb
minitest-reporters-0.14.19 lib/minitest/reporter.rb
minitest-reporters-0.14.18 lib/minitest/reporter.rb
minitest-reporters-0.14.17 lib/minitest/reporter.rb
minitest-reporters-0.14.16 lib/minitest/reporter.rb
minitest-reporters-0.14.15 lib/minitest/reporter.rb
minitest-reporters-0.14.14 lib/minitest/reporter.rb
minitest-reporters-0.14.13 lib/minitest/reporter.rb
minitest-reporters-0.14.12 lib/minitest/reporter.rb
minitest-reporters-0.14.11 lib/minitest/reporter.rb
minitest-reporters-0.14.10 lib/minitest/reporter.rb
minitest-reporters-0.14.9 lib/minitest/reporter.rb
minitest-reporters-0.14.8 lib/minitest/reporter.rb
minitest-reporters-0.14.7 lib/minitest/reporter.rb
minitest-reporters-0.14.6 lib/minitest/reporter.rb