mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 17:10:48 +01:00
24 lines
477 B
JavaScript
24 lines
477 B
JavaScript
|
|
t = db.eval5;
|
|
t.drop();
|
|
|
|
t.save( { a : 1 , b : 2 , c : 3 } );
|
|
|
|
assert.eq( 3 ,
|
|
db.eval(
|
|
function(z){
|
|
return db.eval5.find().toArray()[0].c;
|
|
}
|
|
) ,
|
|
"something weird A"
|
|
);
|
|
|
|
assert.isnull(
|
|
db.eval(
|
|
function(z){
|
|
return db.eval5.find( {} , { a : 1 } ).toArray()[0].c;
|
|
}
|
|
),
|
|
"field spec didn't work"
|
|
);
|