Files
mongo/jstests/core/rename2.js
Siyuan Zhou 3660343e0b SERVER-12127 migrate js tests to jscore suite when not related to writes
Migrate js tests starting from j-z.
Include SERVER-12920 Update use_power_of_2.js

Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
2014-03-03 22:54:10 -05:00

20 lines
313 B
JavaScript

a = db.rename2a;
b = db.rename2b;
a.drop();
b.drop();
a.save( { x : 1 } )
a.save( { x : 2 } )
a.save( { x : 3 } )
assert.eq( 3 , a.count() , "A" )
assert.eq( 0 , b.count() , "B" )
assert( a.renameCollection( "rename2b" ) , "the command" );
assert.eq( 0 , a.count() , "C" )
assert.eq( 3 , b.count() , "D" )