0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/remove3.js
2009-10-16 15:33:56 -04:00

19 lines
327 B
JavaScript

t = db.remove3;
t.drop();
for ( i=1; i<=8; i++){
t.save( { _id : i , x : i } );
}
assert.eq( 8 , t.count() , "A" );
t.remove( { x : { $lt : 5 } } );
assert.eq( 4 , t.count() , "B" );
t.remove( { _id : 5 } );
assert.eq( 3 , t.count() , "C" );
t.remove( { _id : { $lt : 8 } } , "D" );
assert.eq( 1 , t.count() , "D" );