mirror of
https://github.com/knex/knex.git
synced 2025-09-24 15:45:50 +00:00
12 lines
196 B
JavaScript
12 lines
196 B
JavaScript
![]() |
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);
|
||
|
|
||
|
});
|
||
|
|
||
|
};
|