0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/jstests/update_addToSet.js

19 lines
371 B
JavaScript
Raw Normal View History

2010-01-26 23:29:06 +01:00
t = db.update_addToSet1;
t.drop();
o = { _id : 1 , a : [ 2 , 1 ] }
t.insert( o );
assert.eq( o , t.findOne() , "A1" );
t.update( {} , { $addToSet : { a : 3 } } );
o.a.push( 3 );
assert.eq( o , t.findOne() , "A2" );
t.update( {} , { $addToSet : { a : 3 } } );
assert.eq( o , t.findOne() , "A3" );
2010-02-09 17:50:53 +01:00
t.update( {} , { $addToSet : { a : { $each : [ 3 , 5 , 6 ] } } } );