diff options
Diffstat (limited to 'share/www/script')
-rw-r--r-- | share/www/script/couch_tests.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js index e436ba00..af4bf5ea 100644 --- a/share/www/script/couch_tests.js +++ b/share/www/script/couch_tests.js @@ -28,6 +28,10 @@ var tests = { db.deleteDb(); db.createDb(); + + // PUT on existing DB should return 409 instead of 500 + xhr = CouchDB.request("PUT", "/test_suite_db/"); + T(xhr.status == 409); if (debug) debugger; // Get the database info, check the db_name |