Files
mongo/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" );