mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 17:10:48 +01:00
test for SERVER-206
This commit is contained in:
parent
23ea3a46e1
commit
a407720671
15
jstests/set4.js
Normal file
15
jstests/set4.js
Normal file
@ -0,0 +1,15 @@
|
||||
|
||||
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" );
|
||||
|
Loading…
Reference in New Issue
Block a user