datapumps
Version:
Node.js ETL (Extract, Transform, Load) toolkit for easy data import, export or transfer between systems.
19 lines (13 loc) • 438 B
JavaScript
(function() {
var PostgresqlMixin, sinon;
require('should');
sinon = require('sinon');
PostgresqlMixin = require('../PostgresqlMixin');
describe('PostgresqlMixin(client)', function() {
return it('should throw error when client is not given', function() {
return (function() {
return PostgresqlMixin();
}).should["throw"]('Postgresql mixin requires client to be given');
});
});
}).call(this);