0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/jstests/auth/role_management_commands_standalone.js
2019-07-27 11:02:23 -04:00

10 lines
227 B
JavaScript

(function() {
'use strict';
load('jstests/auth/role_management_commands_lib.js');
var conn = MongoRunner.runMongod({auth: '', useHostname: false});
runAllRoleManagementCommandsTests(conn);
MongoRunner.stopMongod(conn);
})();