class RSpec::Core::Reporter
def report(expected_example_count, seed=nil)
-
block(Block) -- yields itself for further reporting. -
seed(Integer) -- the seed used to randomize the spec run -
count(Integer) -- the number of examples being run
Overloads:
-
report(count, seed, &block) -
report(count, &block)
Other tags:
- Api: -
def report(expected_example_count, seed=nil) start(expected_example_count) begin yield self ensure finish(seed) end end