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

9 lines
136 B
JavaScript

t = db.basic6;
t.findOne();
t.a.findOne();
assert.eq( "test.basic6" , t.toString() );
assert.eq( "test.basic6.a" , t.a.toString() );