Files
mongo/jstests/evalb.js

18 lines
405 B
JavaScript
Raw Normal View History

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" );
2010-06-25 16:39:16 -04:00
o = db.system.profile.find().sort( { $natural : -1 } ).limit(1).next();
2011-05-08 01:27:00 -04:00
assert( tojson(o).indexOf( "findOne().x" ) > 0 , "C : " + tojson( o ) )
2010-06-25 16:39:16 -04:00
db.setProfilingLevel( 0 );