summaryrefslogtreecommitdiff
path: root/jstests/core/js5.js
blob: 8fa45a0afe3739ca823ff94332144100fca8328f (plain)
1
2
3
4
5
6
7
8
9
10

t = db.jstests_js5;
t.drop();

t.save( { a : 1 } );
t.save( { a : 2 } );

assert.eq( 2 , t.find( { "$where" : "this.a" } ).count() , "A" );
assert.eq( 0 , t.find( { "$where" : "this.b" } ).count() , "B" );
assert.eq( 0 , t.find( { "$where" : "this.b > 45" } ).count() , "C" );