class BenchTextFormat

Public Instance Methods

bench_all() click to toggle source
# File vendor/qwik/lib/qwik/bench-textformat.rb, line 14
def bench_all
  n = 10
  #n = 100
  #n = 1000
  t_add_user
  benchmark {
    n.times {
      session('/test/TextFormat.html')
      dummy_str = @res.setback_body(@res.body)
    }
  }
end