mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
414 B
19 lines
414 B
9 years ago
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
const http = require('http');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
const server = http.createServer(common.mustCall((req, res) => {
|
||
|
res.end('ok');
|
||
|
}));
|
||
|
server.listen(common.PORT, () => {
|
||
|
http.get({
|
||
|
port: common.PORT,
|
||
|
headers: {'Test': 'Düsseldorf'}
|
||
|
}, common.mustCall((res) => {
|
||
|
assert.equal(res.statusCode, 200);
|
||
|
server.close();
|
||
|
}));
|
||
|
});
|