0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/query1.js

21 lines
263 B
JavaScript
Raw Normal View History

2009-05-14 16:45:55 +02:00
t = db.query1;
t.drop();
t.save( { num : 1 } );
t.save( { num : 3 } )
t.save( { num : 4 } );
num = 0;
total = 0;
t.find().forEach(
function(z){
num++;
total += z.num;
}
);
assert.eq( num , 3 , "num" )
assert.eq( total , 8 , "total" )