Files
mongo/jstests/core/evale.js
Randolph Tan 5595b94560 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
2014-02-28 16:26:33 -05:00

5 lines
210 B
JavaScript

t = db.jstests_evale;
t.drop();
db.eval( function() { return db.jstests_evale.count( { $where:function() { return true; } } ) } );
db.eval( "db.jstests_evale.count( { $where:function() { return true; } } )" );