File: benchmarker.rb

package info (click to toggle)
puppet-agent 8.10.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 27,392 kB
  • sloc: ruby: 286,820; sh: 492; xml: 116; makefile: 88; cs: 68
file content (17 lines) | stat: -rw-r--r-- 336 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Benchmarker
  def initialize(target, size)
  end

  def setup
  end

  def generate
  end

  def run(args=nil)
    # Just running help is probably a good proxy of a full startup.
    # Simply asking for the version might also be good, but it would miss all
    # of the app searching and loading parts
    `puppet help`
  end
end