0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/jstests/eval2.js
Eliot Horowitz 77ccdaa8e5 fixing tests
2009-02-20 10:54:28 -05:00

19 lines
280 B
JavaScript

t = db.test;
t.drop();
t.save({a:1});
t.save({a:1});
var f = db.group(
{
ns: "test",
key: { a:true},
cond: { a:1 },
reduce: function(obj,prev) { prev.csum++; } ,
initial: { csum: 0}
}
);
assert(f[0].a == 1 && f[0].csum == 2);