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

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"
);