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

9 lines
310 B
JavaScript

assert.eq( 17 , db.eval( function(){ return 11 + 6; } ) , "A" );
assert.eq( 17 , db.eval( function( x ){ return 10 + x; } , 7 ) , "B" );
// check that functions in system.js work
db.system.js.insert({_id: "add", value: function(x,y){ return x + y;}});
assert.eq( 20 , db.eval( "this.add(15, 5);" ) , "C" );