xref: /unit/test/node/set_header_array/app.js (revision 855:f143c7953df7)
1#!/usr/bin/env node
2
3require('unit-http').createServer(function (req, res) {
4    res.setHeader('Set-Cookie', ['tc=one,two,three', 'tc=four,five,six']);
5    res.end();
6}).listen(7080);
7