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
375 B
21 lines
375 B
10 years ago
|
var assert = require('assert');
|
||
|
var common = require('../common');
|
||
|
var net = require('net');
|
||
|
|
||
|
var server = net.createServer(assert.fail);
|
||
|
var closeEvents = 0;
|
||
|
|
||
|
server.on('close', function() {
|
||
|
++closeEvents;
|
||
|
});
|
||
|
|
||
|
server.listen(common.PORT, function() {
|
||
|
assert(false);
|
||
|
});
|
||
|
|
||
|
server.close('bad argument');
|
||
|
|
||
|
process.on('exit', function() {
|
||
|
assert.equal(closeEvents, 1);
|
||
|
});
|