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

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

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