The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
23 lines
537 B
JavaScript
23 lines
537 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var seen_req = false;
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
assert.equal('GET', req.method);
|
|
assert.equal('/foo?bar', req.url);
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
res.write('hello\n');
|
|
res.end();
|
|
server.close();
|
|
seen_req = true;
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
http.get('http://127.0.0.1:' + common.PORT + '/foo?bar');
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert(seen_req);
|
|
});
|