mongo-debian/jstests/basic5.js
2010-01-31 08:32:52 +01:00

6 lines
126 B
JavaScript

t = db.getCollection( "basic5" );
t.drop();
t.save( { a : 1 , b : [ 1 , 2 , 3 ] } );
assert.eq( 3 , t.findOne().b.length );