port test/unit/test_ccc.rb to Perl 5
[unicorn.git] / test / benchmark / stack.ru
blob17a565bc64dd244097431925106e024a0345fbe0
1 # frozen_string_literal: false
2 run(lambda { |env|
3   body = "#{caller.size}\n"
4   h = {
5     "Content-Length" => body.size.to_s,
6     "Content-Type" => "text/plain",
7   }
8   [ 200, h, [ body ] ]
9 })