Introduces OverrideHelpers object with convenience methods for inspecting certain aggregation and map-reduce commands, as well as overriding startParallelShell(), Mongo.prototype.runCommand(), and Mongo.prototype.runCommandWithMetadata(). Also removes a number of tests that were incorrectly blacklisted from the read_concern_majority_passthrough.yml and read_concern_linearizable_passthrough.yml test suites.
19 lines
320 B
JavaScript
19 lines
320 B
JavaScript
// @tags: [
|
|
// requires_eval_command,
|
|
// requires_non_retryable_commands,
|
|
// ]
|
|
|
|
(function() {
|
|
"use strict";
|
|
|
|
db.col.insert({data: 5});
|
|
|
|
db.eval("print(5)");
|
|
|
|
db.system.js.insert({_id: "foo", value: Code("db.col.drop()")});
|
|
|
|
db.eval("print(5)");
|
|
|
|
assert.eq(5, db.col.findOne()["data"]);
|
|
})();
|