Make -N/--no-default-middleware option work
[unicorn.git] / t / fails-rack-lint.ru
blob82bfb5ff4afd1a0fa560b2ba81344088ca2fc553
1 # This rack app returns an invalid status code, which will cause
2 # Rack::Lint to throw an exception if it is present.  This
3 # is used to check whether Rack::Lint is in the stack or not.
5 run lambda {|env| return [42, {}, ["Rack::Lint wasn't there if you see this"]]}