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.
24 lines
506 B
24 lines
506 B
var common = require('../common');
|
|
var net = require('net');
|
|
var assert = require('assert');
|
|
|
|
|
|
// Hopefully nothing is running on common.PORT
|
|
var c = net.createConnection(common.PORT);
|
|
|
|
c.on('connect', function () {
|
|
console.error("connected?!");
|
|
assert.ok(false);
|
|
})
|
|
|
|
var gotError = false;
|
|
c.on('error', function (e) {
|
|
console.error("couldn't connect.");
|
|
gotError = true;
|
|
assert.equal(require('constants').ECONNREFUSED, e.errno);
|
|
});
|
|
|
|
|
|
process.on('exit', function () {
|
|
assert.ok(gotError);
|
|
});
|
|
|