mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
* Remove assert from globals * Remove Client from globals * Remove global test function * Remove MemoryStream from globals * Require assert in SASL integration tests * Attempt to use a postgres with ssl? * Use latest image * Remove connection tests - they test internals that are better covered by testint the client
20 lines
352 B
JavaScript
20 lines
352 B
JavaScript
'use strict'
|
|
var helper = require('./../test-helper')
|
|
var pg = helper.pg
|
|
var native = helper.args.native
|
|
const assert = require('assert')
|
|
|
|
var pool = new pg.Pool()
|
|
|
|
pool.connect(
|
|
assert.calls(function (err, client, done) {
|
|
if (native) {
|
|
assert(client.native)
|
|
} else {
|
|
assert(!client.native)
|
|
}
|
|
done()
|
|
pool.end()
|
|
})
|
|
)
|