summaryrefslogtreecommitdiff
path: root/share/www/script/test/batch_save.js
diff options
context:
space:
mode:
authorNoah Slater <nslater@apache.org>2009-07-06 00:33:50 +0000
committerNoah Slater <nslater@apache.org>2009-07-06 00:33:50 +0000
commit282b96ddd9a84b740788c2358ec0f5fedafb7cc6 (patch)
treefb48e605ceb8079d0195d3b1ec0eca7110fa7ef2 /share/www/script/test/batch_save.js
parentb5cc085d3bc6316063f14adedf20632ee904875d (diff)
trimmed trailing whitespace
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@791350 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/script/test/batch_save.js')
-rw-r--r--share/www/script/test/batch_save.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/share/www/script/test/batch_save.js b/share/www/script/test/batch_save.js
index 77aa6635..d2721901 100644
--- a/share/www/script/test/batch_save.js
+++ b/share/www/script/test/batch_save.js
@@ -19,32 +19,32 @@ couchTests.batch_save = function(debug) {
// commit should work fine with no batches
T(db.ensureFullCommit().ok);
-
+
// PUT a doc with ?batch=ok
T(db.save({_id:"0",a:1,b:1}, {batch : "ok"}).ok);
// test that response is 200 Accepted
T(db.last_req.status == 202);
T(db.last_req.statusText == "Accepted");
-
+
T(db.allDocs().total_rows == 0);
restartServer();
-
+
// lost the updates
T(db.allDocs().total_rows == 0);
-
+
T(db.save({_id:"0",a:1,b:1}, {batch : "ok"}).ok);
T(db.save({_id:"1",a:1,b:1}, {batch : "ok"}).ok);
T(db.save({_id:"2",a:1,b:1}, {batch : "ok"}).ok);
T(db.ensureFullCommit().ok);
T(db.allDocs().total_rows == 3);
-
+
// repeat the tests for POST
var resp = db.request("POST", db.uri + "?batch=ok", {body: JSON.stringify({a:1})});
T(JSON.parse(resp.responseText).ok);
-
+
// test that response is 200 Accepted
T(resp.status == 202);
T(resp.statusText == "Accepted");
@@ -59,5 +59,5 @@ couchTests.batch_save = function(debug) {
T(db.ensureFullCommit().ok);
T(db.allDocs().total_rows == 5);
-
+
};