Files
mongo/jstests/evalb.js
2012-01-25 17:11:52 -05:00

18 lines
447 B
JavaScript

t = db.evalb;
t.drop();
t.save( { x : 3 } );
assert.eq( 3, db.eval( function(){ return db.evalb.findOne().x; } ) , "A" );
db.setProfilingLevel( 2 );
assert.eq( 3, db.eval( function(){ return db.evalb.findOne().x; } ) , "B" );
o = db.system.profile.find( { "command.$eval" : { $exists : true } } ).sort( { $natural : -1 } ).limit(1).next();
assert( tojson(o).indexOf( "findOne().x" ) > 0 , "C : " + tojson( o ) )
db.setProfilingLevel( 0 );