Previously, some evalX.js tests would assert that a drop returned true, meaning the collection existed. This may not true if two of these tests are run concurrently in the parallel suite, so these tests should not assert that the drop returns true.
8 lines
203 B
JavaScript
8 lines
203 B
JavaScript
assert.writeOK(db.evalprep.insert({}), "db must exist for eval to succeed");
|
|
db.evalprep.drop();
|
|
|
|
assert.eq(6, db.eval("5 + 1"), "A");
|
|
assert.throws(function(z) {
|
|
db.eval("5 + function x; + 1");
|
|
});
|