Files
mongo/jstests/core/eval_nolock.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

17 lines
340 B
JavaScript

t = db.eval_nolock
t.drop();
for ( i=0; i<10; i++ )
t.insert( { _id : i } );
res = db.runCommand( { eval :
function(){
db.eval_nolock.insert( { _id : 123 } );
return db.eval_nolock.count();
}
, nolock : true } );
assert.eq( 11 , res.retval , "A" )