summaryrefslogtreecommitdiff
path: root/jstests/jni5.js
diff options
context:
space:
mode:
authorAntonin Kral <a.kral@bobek.cz>2010-01-31 08:32:52 +0100
committerAntonin Kral <a.kral@bobek.cz>2010-01-31 08:32:52 +0100
commit4eefaf421bfeddf040d96a3dafb12e09673423d7 (patch)
treecb2e5ccc7f98158894f977ff131949da36673591 /jstests/jni5.js
downloadmongodb-4eefaf421bfeddf040d96a3dafb12e09673423d7.tar.gz
Imported Upstream version 1.3.1
Diffstat (limited to 'jstests/jni5.js')
-rw-r--r--jstests/jni5.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/jstests/jni5.js b/jstests/jni5.js
new file mode 100644
index 0000000..c6e6b54
--- /dev/null
+++ b/jstests/jni5.js
@@ -0,0 +1,10 @@
+
+t = db.jni5
+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" );