summaryrefslogtreecommitdiff
path: root/jstests/jni8.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/jni8.js')
-rw-r--r--jstests/jni8.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/jstests/jni8.js b/jstests/jni8.js
new file mode 100644
index 0000000..afc7d83
--- /dev/null
+++ b/jstests/jni8.js
@@ -0,0 +1,14 @@
+t = db.jni8;
+t.drop();
+
+t.save( { a : 1 , b : [ 2 , 3 , 4 ] } );
+
+assert.eq( 1 , t.find().length() , "A" );
+assert.eq( 1 , t.find( function(){ return this.a == 1; } ).length() , "B" );
+assert.eq( 1 , t.find( function(){ if ( ! this.b.length ) return true; return this.b.length == 3; } ).length() , "B2" );
+assert.eq( 1 , t.find( function(){ return this.b[0] == 2; } ).length() , "C" );
+assert.eq( 0 , t.find( function(){ return this.b[0] == 3; } ).length() , "D" );
+assert.eq( 1 , t.find( function(){ return this.b[1] == 3; } ).length() , "E" );
+
+
+assert(t.validate().valid);