0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/rename2.js
2009-09-07 11:14:48 -04: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" )