Flowdock
method

record

Importance_1
v2_1_10 - Show latest stable - 0 notes - Class: Unit
  • 1_8_6_287
  • 1_8_7_72
  • 1_8_7_330
  • 1_9_1_378
  • 1_9_2_180
  • 1_9_3_125
  • 1_9_3_392
  • 2_1_10 (0)
  • 2_2_9
  • 2_4_6
  • 2_5_5
  • 2_6_3
  • What's this?
record(suite, method, assertions, time, error) public

Record the result of a single test. Makes it very easy to gather information. Eg:

class StatisticsRecorder < MiniTest::Unit
  def record suite, method, assertions, time, error
    # ... record the results somewhere ...
  end
end

MiniTest::Unit.runner = StatisticsRecorder.new

NOTE: record might be sent more than once per test. It will be sent once with the results from the test itself. If there is a failure or error in teardown, it will be sent again with the error or failure.

Show source
Register or log in to add new notes.