summaryrefslogtreecommitdiffhomepage
path: root/test/ruby/header_array_nil/config.ru
blob: 04550c8d8f1b09e146f77748ba822f9b74bbf6e7 (plain) (blame)
1
2
3
4
5
6
7
app = Proc.new do |env|
    ['200', {
        'x-array' => [nil],
    }, []]
end

run app