0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/set1.js

10 lines
183 B
JavaScript
Raw Normal View History

2009-08-26 06:16:16 +02:00
t = db.set1;
t.drop();
t.insert( { _id : 1, emb : {} });
t.update( { _id : 1 }, { $set : { emb : { 'a.dot' : 'data'} }});
assert.eq( { _id : 1 , emb : {} } , t.findOne() , "A" );
2009-08-26 06:16:16 +02:00