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

16 lines
193 B
JavaScript

t = db.eval6;
t.drop();
t.save( { a : 1 } );
db.eval(
function(){
o = db.eval6.findOne();
o.b = 2;
db.eval6.save( o );
}
);
assert.eq( 2 , t.findOne().b );