Files
mongo/jstests/core/count7.js
Randolph Tan 5595b94560 SERVER-12127 migrate js tests to jscore suite when not related to writes
Moved test jstest/[a-i].js -> jstests/core/ and made changes to comply with write command api
2014-02-28 16:26:33 -05:00

26 lines
482 B
JavaScript

// Check normal count matching and deduping.
t = db.jstests_count7;
t.drop();
t.ensureIndex( {a:1} );
t.save( {a:'algebra'} );
t.save( {a:'apple'} );
t.save( {a:'azores'} );
t.save( {a:'bumper'} );
t.save( {a:'supper'} );
t.save( {a:'termite'} );
t.save( {a:'zeppelin'} );
t.save( {a:'ziggurat'} );
t.save( {a:'zope'} );
assert.eq( 5, t.count( {a:/p/} ) );
t.remove({});
t.save( {a:[1,2,3]} );
t.save( {a:[1,2,3]} );
t.save( {a:[1]} );
assert.eq( 2, t.count( {a:{$gt:1}} ) );