mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-25 16:03:13 +00:00
24 lines
617 B
JavaScript
24 lines
617 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) {});
|
|
});
|
|
});
|
|
});
|