diff options
author | Randolph Tan <randolph@10gen.com> | 2014-01-14 14:09:42 -0500 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2014-02-28 16:26:33 -0500 |
commit | 5595b945603b0712c537787e31e6da661c424fee (patch) | |
tree | 90945ee3fe4931032f3af2d397bb755fbf5d30ef /jstests/core/eval1.js | |
parent | cd62080dcb036e83f8fca6d68d9bcab67bf7a21c (diff) | |
download | mongo-5595b945603b0712c537787e31e6da661c424fee.tar.gz |
SERVER-12127 migrate js tests to jscore suite when not related to writes
Moved test jstest/[a-i].js -> jstests/core/ and made changes to comply with write command api
Diffstat (limited to 'jstests/core/eval1.js')
-rw-r--r-- | jstests/core/eval1.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/jstests/core/eval1.js b/jstests/core/eval1.js new file mode 100644 index 00000000000..4a5ca75f09b --- /dev/null +++ b/jstests/core/eval1.js @@ -0,0 +1,17 @@ + +t = db.eval1; +t.drop(); + +t.save( { _id : 1 , name : "eliot" } ); +t.save( { _id : 2 , name : "sara" } ); + +f = function(id){ + return db["eval1"].findOne( { _id : id } ).name; +} + + +assert.eq( "eliot" , f( 1 ) , "A" ); +assert.eq( "sara" , f( 2 ) , "B" ); +assert.eq( "eliot" , db.eval( f , 1 ) , "C" ); +assert.eq( "sara" , db.eval( f , 2 ) , "D" ); + |