t/lib.perl: fix Perl integration tests w/o installation
[unicorn.git] / t / env.ru
blob86c3cfadc888eef05c12f36b7593dd35b7f965fc
1 # frozen_string_literal: false
2 use Rack::ContentLength
3 use Rack::ContentType, "text/plain"
4 run lambda { |env| [ 200, {}, [ env.inspect << "\n" ] ] }