summaryrefslogblamecommitdiffhomepage
path: root/test/node/header_name_valid/app.js
blob: 425f026f1adc0dd8bbcb5af922db99ec4e29595d (plain) (tree)
1
2
3
4
5
6
7






                                                       
#!/usr/bin/env node

require('unit-http').createServer(function (req, res) {
    res.writeHead(200, {});
    res.setHeader('@$', 'test');
    res.end();
}).listen(7080);