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.
 

20 lines
370 B

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