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.
21 lines
341 B
21 lines
341 B
12 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
var net = require('net');
|
||
|
|
||
|
var gotError = false;
|
||
|
|
||
|
var client = net.connect({
|
||
|
host: 'no.way.you.will.resolve.this',
|
||
|
port: common.PORT
|
||
|
});
|
||
|
|
||
|
client.once('error', function(err) {
|
||
|
gotError = true;
|
||
|
});
|
||
|
|
||
|
client.end();
|
||
|
|
||
|
process.on('exit', function() {
|
||
|
assert(gotError);
|
||
|
});
|