Files
mongo/jstests/core/distinct2.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
231 B
JavaScript

t = db.distinct2;
t.drop();
t.save({a:null});
assert.eq( 0 , t.distinct('a.b').length , "A" );
t.drop();
t.save( { a : 1 } );
assert.eq( [1] , t.distinct( "a" ) , "B" );
t.save( {} )
assert.eq( [1] , t.distinct( "a" ) , "C" );