summaryrefslogtreecommitdiff
path: root/jstests/dropdb.js
diff options
context:
space:
mode:
authorAntonin Kral <a.kral@bobek.cz>2011-09-14 17:08:06 +0200
committerAntonin Kral <a.kral@bobek.cz>2011-09-14 17:08:06 +0200
commit5d342a758c6095b4d30aba0750b54f13b8916f51 (patch)
tree762e9aa84781f5e3b96db2c02d356c29cf0217c0 /jstests/dropdb.js
parentcbe2d992e9cd1ea66af9fa91df006106775d3073 (diff)
downloadmongodb-5d342a758c6095b4d30aba0750b54f13b8916f51.tar.gz
Imported Upstream version 2.0.0
Diffstat (limited to 'jstests/dropdb.js')
-rw-r--r--jstests/dropdb.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/jstests/dropdb.js b/jstests/dropdb.js
new file mode 100644
index 0000000..0b83884
--- /dev/null
+++ b/jstests/dropdb.js
@@ -0,0 +1,17 @@
+// Test that a db does not exist after it is dropped.
+// Disabled in the small oplog suite because the slave may create a master db
+// with the same name as the dropped db when requesting a clone.
+
+m = db.getMongo();
+baseName = "jstests_dropdb";
+ddb = db.getSisterDB( baseName );
+
+ddb.c.save( {} );
+ddb.getLastError();
+assert.neq( -1, m.getDBNames().indexOf( baseName ) );
+
+ddb.dropDatabase();
+assert.eq( -1, m.getDBNames().indexOf( baseName ) );
+
+ddb.dropDatabase();
+assert.eq( -1, m.getDBNames().indexOf( baseName ) );