Files
mongo/jstests/core/eval5.js

17 lines
334 B
JavaScript
Raw Normal View History

2009-05-09 10:23:44 -04:00
t = db.eval5;
t.drop();
t.save({a: 1, b: 2, c: 3});
2009-05-09 10:23:44 -04:00
assert.eq(3,
db.eval(function(z) {
return db.eval5.find().toArray()[0].c;
}),
"something weird A");
2009-05-09 10:23:44 -04:00
assert.isnull(db.eval(function(z) {
return db.eval5.find({}, {a: 1}).toArray()[0].c;
}),
"field spec didn't work");