t/lib.perl: fix Perl integration tests w/o installation
[unicorn.git] / t / fails-rack-lint.ru
blob8b8b5ec3f8d65575dee5482e228df4c7fc779cc2
1 # frozen_string_literal: false
2 # This rack app returns an invalid status code, which will cause
3 # Rack::Lint to throw an exception if it is present.  This
4 # is used to check whether Rack::Lint is in the stack or not.
6 run lambda {|env| return [42, {}, ["Rack::Lint wasn't there if you see this"]]}