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"]]}