summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorDamien F. Katz <damien@apache.org>2008-08-07 20:28:42 +0000
committerDamien F. Katz <damien@apache.org>2008-08-07 20:28:42 +0000
commit986302c54df1bdb4be3dc1d1a4d5a9f34e6af50d (patch)
tree6f9d1caef3dc1b619999890a0e364961c88f2992 /share
parentd721ef270cf548e2d217c471da44d0c31054ed98 (diff)
Fix for bug COUCHDB-100.
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@683704 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share')
-rw-r--r--share/www/script/couch_tests.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js
index 0308ed8d..32a53909 100644
--- a/share/www/script/couch_tests.js
+++ b/share/www/script/couch_tests.js
@@ -16,6 +16,10 @@ var tests = {
basics: function(debug) {
var db = new CouchDB("test_suite_db");
db.deleteDb();
+
+ // bug COUCHDB-100: DELETE on non-existent DB returns 500 instead of 404
+ db.deleteDb();
+
db.createDb();
if (debug) debugger;