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
22 lines
521 B
JavaScript
22 lines
521 B
JavaScript
'use strict'
|
|
var helper = require('./test-helper')
|
|
const suite = new helper.Suite()
|
|
const assert = require('assert')
|
|
|
|
suite.test('empty query message handling', function (done) {
|
|
const client = helper.client()
|
|
assert.emits(client, 'drain', function () {
|
|
client.end(done)
|
|
})
|
|
client.query({ text: '' })
|
|
})
|
|
|
|
suite.test('callback supported', function (done) {
|
|
const client = helper.client()
|
|
client.query('', function (err, result) {
|
|
assert(!err)
|
|
assert.empty(result.rows)
|
|
client.end(done)
|
|
})
|
|
})
|