Sha256: 3cfef4cf1098212290f37986a85f2678df41219834a7681d520776f4d8f65d9f

Contents?: true

Size: 694 Bytes

Versions: 7

Compression:

Stored size: 694 Bytes

Contents

module MiniTest
  module Reporter
    def runner
      MiniTest::Unit.runner
    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

7 entries across 7 versions & 1 rubygems

Version Path
minitest-reporters-0.7.1 lib/minitest/reporter.rb
minitest-reporters-0.7.0 lib/minitest/reporter.rb
minitest-reporters-0.6.0 lib/minitest/reporter.rb
minitest-reporters-0.5.1 lib/minitest/reporter.rb
minitest-reporters-0.5.0 lib/minitest/reporter.rb
minitest-reporters-0.4.0 lib/minitest/reporter.rb
minitest-reporters-0.3.0 lib/minitest/reporter.rb