class BenchmarkDriver::Output

def with_job(name:, &block)

Parameters:
  • name (String) --
def with_job(name:, &block)
  job = BenchmarkDriver::Job.new(name: name)
  @output.with_job(job) do
    block.call
  end
end