summaryrefslogtreecommitdiff
path: root/jstests/auth/usersInfo_sharded_cluster.js
blob: 6235dd95e03239f5dcd7c85bf7cf143b7fa290c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Test behavior and edge cases in usersInfo on sharded clusters.
 * @tags: [requires_sharding]
 */
(function() {
'use strict';

load("jstests/auth/usersInfo_base.js");

const st = new ShardingTest({shards: 1, mongos: 1, config: 1});
runTest(st.s0);
st.stop();
}());