node-postgres/test/unit/client/notification-tests.js
2011-03-03 23:20:47 -06:00

10 lines
278 B
JavaScript

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