46de8790
Tarpit Grover
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
var insert = require('./insert');
insert('update multi', [{
hello:'world1'
},{
hello:'world2'
}], function(db, t, done) {
db.a.update({}, {$set:{updated:true}}, {multi:true}, function(err, lastErrorObject) {
t.ok(!err);
t.equal(lastErrorObject.updatedExisting, true);
t.equal(lastErrorObject.n, 2);
db.a.find(function(err, docs) {
t.ok(!err);
t.equal(docs.length, 2);
t.ok(docs[0].updated);
t.equal(docs[0].hello, 'world1');
t.ok(docs[1].updated);
t.equal(docs[1].hello, 'world2');
done();
});
});
});
|