add test for exported types

This commit is contained in:
brianc 2012-10-15 17:47:28 -05:00
parent ffe4cdcf27
commit ee36344a26

View File

@ -158,3 +158,8 @@ test('libpq connection string building', function() {
});
})
test('types are exported', function() {
var pg = require(__dirname + '/../../lib/index');
assert.ok(pg.types);
});