xref: /unit/test/ruby/header_status/config.ru (revision 585:17703effc76a)
1app = Proc.new do |env|
2    ['200', {
3        'Content-Length' => '0',
4        'Status' => '200'
5    }, []]
6end
7
8run app
9