mongo/jstests/evalb.js

18 lines
402 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().sort( { $natural : -1 } ).limit(1).next();
assert( o.info.indexOf( "findOne().x" ) > 0 , "C : " + tojson( o ) )
db.setProfilingLevel( 0 );