blob: c033a916263db9a61256015725f2de7a85035fbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Test that sessions on mongods cannot be resumed by deleted and recreated user.
*/
(function() {
'use strict';
load("jstests/auth/deleted_recreated_user_base.js");
const mongod = MongoRunner.runMongod({auth: ''});
runTest(mongod, mongod);
MongoRunner.stopMongod(mongod);
})();
|