mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 17:10:48 +01:00
16 lines
353 B
JavaScript
16 lines
353 B
JavaScript
|
|
t = db.set4;
|
|
t.drop();
|
|
|
|
orig = { _id:1 , a : [ { x : 1 } ]}
|
|
t.insert( orig );
|
|
|
|
t.update( {}, { $set : { 'a.0.x' : 2, 'foo.bar' : 3 } } );
|
|
orig.a[0].x = 2; orig.foo = { bar : 3 }
|
|
assert.eq( orig , t.findOne() , "A" );
|
|
|
|
t.update( {}, { $set : { 'a.0.x' : 4, 'foo.bar' : 5 } } );
|
|
orig.a[0].x = 4; orig.foo.bar = 5;
|
|
assert.eq( orig , t.findOne() , "B" );
|
|
|