node-postgres/test/unit/client/notification-tests.js
2011-03-03 22:55:06 -06:00

10 lines
266 B
JavaScript

var helper = require(__dirname + "/test-helper");
test('passes connection notification', function() {
var client = new Client();
assert.emits(client, 'notify', function(msg) {
assert.equal(msg, "HAY!!");
})
client.connection.emit('notify', "HAY!!");
})