0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/sharding/diffservers1.js
2009-02-18 10:59:13 -05:00

17 lines
447 B
JavaScript

s = new ShardingTest( "diffservers1" , 2 );
assert.eq( 2 , s.config.servers.count() , "server count wrong" );
assert.eq( 2 , s._connections[0].getDB( "config" ).servers.count() , "where are servers!" );
assert.eq( 0 , s._connections[1].getDB( "config" ).servers.count() , "shouldn't be here" );
test1 = s.getDB( "test1" ).foo;
test1.save( { a : 1 } );
test1.save( { a : 2 } );
test1.save( { a : 3 } );
assert( 3 , test1.count() );
s.stop();