mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
24 lines
603 B
JavaScript
24 lines
603 B
JavaScript
var Client = require('../')
|
|
var assert = require('assert')
|
|
|
|
describe('connection error', function () {
|
|
it('doesnt segfault', function (done) {
|
|
var client = new Client()
|
|
client.connect('asldgsdgasgdasdg', function (err) {
|
|
assert(err)
|
|
// calling error on a closed client was segfaulting
|
|
client.end()
|
|
done()
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('reading while not connected', function () {
|
|
it('does not seg fault but does throw execption', function () {
|
|
var client = new Client()
|
|
assert.throws(function () {
|
|
client.on('notification', function (msg) {})
|
|
})
|
|
})
|
|
})
|