0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/jstests/count3.js

27 lines
590 B
JavaScript

t = db.count3;
t.drop();
t.save( { a : 1 } );
t.save( { a : 1 , b : 2 } );
assert.eq( 2 , t.find( { a : 1 } ).itcount() , "A" );
assert.eq( 2 , t.find( { a : 1 } ).count() , "B" );
assert.eq( 2 , t.find( { a : 1 } , { b : 1 } ).itcount() , "C" );
assert.eq( 2 , t.find( { a : 1 } , { b : 1 } ).count() , "D" );
t.drop();
t.save( { a : 1 } );
assert.eq( 1 , t.find( { a : 1 } ).itcount() , "E" );
assert.eq( 1 , t.find( { a : 1 } ).count() , "F" );
assert.eq( 1 , t.find( { a : 1 } , { b : 1 } ).itcount() , "G" );
assert.eq( 1 , t.find( { a : 1 } , { b : 1 } ).count() , "H" );