blob: 66c2cc74ad61babb10e42e3dd9917d1a95eb6696 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
var baseName = "jstests_dbNoCreate";
var m = MongoRunner.runMongod({});
var t = m.getDB(baseName).t;
assert.eq(0, t.find().toArray().length);
t.remove({});
t.update({}, {a: 1});
t.drop();
MongoRunner.stopMongod(m);
m = MongoRunner.runMongod({restart: true, cleanData: false, dbpath: m.dbpath});
assert.eq(
-1, m.getDBNames().indexOf(baseName), "found " + baseName + " in " + tojson(m.getDBNames()));
|