class RSpec::Core::Reporter

def report(expected_example_count)

Other tags:
    Yield: - block yields itself for further reporting.

Parameters:
  • expected_example_count (Integer) -- the number of examples being run

Overloads:
  • report(count, &block)
  • report(count, &block)
def report(expected_example_count)
  start(expected_example_count)
  begin
    yield self
  ensure
    finish
  end
end