blob: f365e0730e9c55a989a8834a95af90642b87e5f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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()));
|