0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/fm2.js
2009-08-20 16:50:23 -04:00

10 lines
162 B
JavaScript

t = db.fm2
t.drop();
t.insert( { "one" : { "two" : {"three":"four"} } } );
x = t.find({},{"one.two":1})[0]
assert.eq( 1 , x.one.keySet().length , "ks l 1" );