f2b87e02f1
* Remove redundant tests * Add client connectionString test Add test to ensure { connectionString } is respected as an argument to the client constructor * Add test for connection string property Also fixed some legacy require statements.
18 lines
369 B
JavaScript
18 lines
369 B
JavaScript
var Client = require('./client');
|
|
var util = require('util');
|
|
var Pool = require('pg-pool');
|
|
|
|
module.exports = function(Client) {
|
|
var BoundPool = function(options) {
|
|
var config = { Client: Client };
|
|
for (var key in options) {
|
|
config[key] = options[key];
|
|
}
|
|
Pool.call(this, config);
|
|
};
|
|
|
|
util.inherits(BoundPool, Pool);
|
|
|
|
return BoundPool;
|
|
};
|