0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/cursor8.js
2010-05-18 12:45:38 -04:00

22 lines
521 B
JavaScript

t = db.cursor8;
t.drop();
t.save( {} );
t.save( {} );
t.save( {} );
assert.eq( 3 , t.find().count() , "A0" );
db.getMongo().getDB( "admin" ).runCommand( {closeAllDatabases:1} );
function test( want , msg ){
var res = db.runCommand( { cursorInfo:1 } );
assert.eq( want , res.clientCursors_size , msg + " " + tojson( res ) );
}
test( 0 , "A1" );
assert.eq( 3 , t.find().count() , "A2" );
assert.eq( 3 , t.find( {} ).count() , "A3" );
assert.eq( 2, t.find( {} ).limit( 2 ).itcount() , "A4" );
test( 1 , "B1" );