Skip to content

Commit

Permalink
another test for good measure MINOR
Browse files Browse the repository at this point in the history
  • Loading branch information
erh committed Jun 25, 2009
1 parent f9e806b commit b5ca704
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions jstests/cursor1.js
@@ -0,0 +1,20 @@

t = db.cursor1
t.drop();

big = "";
while ( big.length < 50000 )
big += "asdasdasdasdsdsdadsasdasdasD";

num = Math.ceil( 10000000 / big.length );

for ( var i=0; i<num; i++ ){
t.save( { num : i , str : big } );
}

assert.eq( num , t.find().count() );
assert.eq( num , t.find().itcount() );

assert.eq( num / 2 , t.find().limit(num/2).itcount() );

t.drop(); // save some space

0 comments on commit b5ca704

Please sign in to comment.