You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

21 lines
376 B

var assert = require('assert');
var insert = require('./insert');
insert([{
hello:'world1'
},{
hello:'world2'
},{
hello:'world3'
},{
hello:'world4'
}], function(db, done) {
db.a.find().skip(1).size(function(err, thesize) {
assert.equal(thesize, 3);
db.a.find().limit(2).size(function(err, theothersize) {
assert.equal(theothersize, 2);
done();
});
});
});