blob: 4131c8f8691d19b58901f36b66cfa9020ff0baf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Auth test for the listDatabases command on mongods.
*/
(function() {
'use strict';
load("jstests/auth/list_databases_base.js");
const mongod = MongoRunner.runMongod({auth: ""});
runTest(mongod);
MongoRunner.stopMongod(mongod);
})();
|