Commit d348ea33 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

integration: Fix test failures

parent b4709b9e
Nghttpx.run do |resp, req|
req.set_header "User-Agent", "mruby"
Nghttpx.run do |env|
env.req.set_header "User-Agent", "mruby"
end
Nghttpx.run do |resp, req|
resp.set_header "Alpha", "bravo"
Nghttpx.run do |env|
env.resp.set_header "Alpha", "bravo"
end
Nghttpx.run do |resp, req|
Nghttpx.run do |env|
resp = env.resp
resp.clear_headers
resp.status = 404
resp.add_header "from", "mruby"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment