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