0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/jni2.js

31 lines
763 B
JavaScript
Raw Normal View History

2009-01-27 05:28:26 +01:00
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);