0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00
mongodb/jstests/error2.js
2009-05-07 10:52:57 -04:00

22 lines
313 B
JavaScript

// Test that client gets stack trace on failed invoke
f = db.jstests_error2;
f.drop();
f.save( {a:1} );
assert.throws(
function(){
c = f.find({$where : function(){ return a() }});
c.next();
}
);
assert.throws(
function(){
db.eval( function() { return a(); } );
}
);