mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
24 lines
574 B
JavaScript
Executable File
24 lines
574 B
JavaScript
Executable File
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();
|
|
});
|
|
});
|
|
});
|