summaryrefslogtreecommitdiff
path: root/jstests/core/basic5.js
blob: 7ec41ef7872e05dccff5261211c46a0ae1686e6e (plain)
1
2
3
4
5
t = db.getCollection("basic5");
t.drop();

t.save({a: 1, b: [1, 2, 3]});
assert.eq(3, t.findOne().b.length);