summaryrefslogtreecommitdiff
path: root/jstests/auth/role_management_commands_standalone.js
blob: 13d428c8afd3bb40746b5daeb9d907c5fd86cace (plain)
1
2
3
4
5
6
7
8
9
(function() {
'use strict';

load('jstests/auth/role_management_commands_lib.js');

var conn = MongoRunner.runMongod({auth: '', useHostname: false});
runAllRoleManagementCommandsTests(conn);
MongoRunner.stopMongod(conn);
})();