mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
11 lines
195 B
JavaScript
11 lines
195 B
JavaScript
t = db.find3;
|
|
t.drop();
|
|
|
|
for (i = 1; i <= 50; i++)
|
|
t.save({a: i});
|
|
|
|
assert.eq(50, t.find().toArray().length);
|
|
assert.eq(20, t.find().limit(20).toArray().length);
|
|
|
|
assert(t.validate().valid);
|