mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-08-18 11:40:32 +08:00
Initial work on the server
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
var common = require('../../common');
|
||||
var assert = require('assert');
|
||||
var Connection = require(common.lib + '/Connection');
|
||||
var pool = common.createPool();
|
||||
|
||||
pool.getConnection(function(err, connection) {
|
||||
if (err) throw err;
|
||||
assert.strictEqual(connection, pool._allConnections[0]);
|
||||
connection.destroy();
|
||||
|
||||
assert.ok(pool._allConnections.length == 0);
|
||||
assert.ok(connection._poolRemoved);
|
||||
assert.strictEqual(connection.end, Connection.prototype.end);
|
||||
assert.strictEqual(connection.destroy, Connection.prototype.destroy);
|
||||
|
||||
pool.end();
|
||||
});
|
||||
Reference in New Issue
Block a user