Files
mongo/jstests/core/in6.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

14 lines
227 B
JavaScript

t = db.jstests_in6;
t.drop();
t.save( {} );
function doTest() {
assert.eq.automsg( "1", "t.count( {i:null} )" );
assert.eq.automsg( "1", "t.count( {i:{$in:[null]}} )" );
}
doTest();
t.ensureIndex( {i:1} );
doTest();