summaryrefslogtreecommitdiff
path: root/jstests/js7.js
blob: 73ce9c9a6fb177a8710ce956d9e3788fa912e190 (plain)
1
2
3
4
5
6
7
t = db.jstests_js7;
t.drop();

assert.eq( 17 , db.eval( function(){ return args[0]; } , 17 ) );

assert.eq( 17 , db.eval( function( foo ){ return foo; } , 17 ) );