knex/test/lib/aggregate.js

12 lines
196 B
JavaScript
Raw Normal View History

var Q = require('q');
module.exports = function(Knex, dbName, handler, type) {
it('has a sum', function(ok) {
Knex('accounts')
.sum('logins')
.then(handler(ok), ok);
});
};