0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/jstests/jni2.js
2009-01-31 17:22:22 -05:00

31 lines
763 B
JavaScript

t = db.jni2;
t.remove( {} );
db.jni2t.remove( {} );
assert( 0 == db.jni2t.find().length() );
t.save( { z : 1 } );
t.save( { z : 2 } );
assert( 2 == t.find( { $where :
function(){
db.jni2t.save( { y : 1 } );
return 1;
}
} ).length() );
assert( 2 == db.jni2t.find().length() );
assert( 1 == db.jni2t.find()[0].y );
assert( 2 == t.find( { $where :
function(){
if ( db.jni2t.find().length() != 2 )
return 0;( { y : 1 } );
return 1;
}
} ).length() );
assert(t.validate().valid);