summaryrefslogtreecommitdiff
path: root/jstests/remove3.js
blob: 2a51a6e0fd4684c3b8ffbb2d61ba9de4c68926e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

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 } } );
assert.eq( 1 , t.count() , "D" );