Files
mongo/jstests/core/eval4.js
Randolph Tan 5595b94560 SERVER-12127 migrate js tests to jscore suite when not related to writes
Moved test jstest/[a-i].js -> jstests/core/ and made changes to comply with write command api
2014-02-28 16:26:33 -05:00

24 lines
358 B
JavaScript

t = db.eval4;
t.drop();
t.save( { a : 1 } );
t.save( { a : 2 } );
t.save( { a : 3 } );
assert.eq( 3 , t.count() , "A" );
function f( x ){
db.eval4.remove( { a : x } );
}
f( 2 );
assert.eq( 2 , t.count() , "B" );
db.eval( f , 2 );
assert.eq( 2 , t.count() , "C" );
db.eval( f , 3 );
assert.eq( 1 , t.count() , "D" );