From 3b72fa64172fcf930e996a533b89acbabd306c0b Mon Sep 17 00:00:00 2001 From: John Christopher Anderson Date: Mon, 14 Sep 2009 19:17:28 +0000 Subject: support for deletions in changes feed git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@814787 13f79535-47bb-0310-9956-ffa450edef68 --- share/www/script/test/all_docs.js | 3 +-- share/www/script/test/replication.js | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) (limited to 'share') diff --git a/share/www/script/test/all_docs.js b/share/www/script/test/all_docs.js index 34c20921..ab443605 100644 --- a/share/www/script/test/all_docs.js +++ b/share/www/script/test/all_docs.js @@ -65,8 +65,7 @@ couchTests.all_docs = function(debug) { // the deletion should make doc id 1 have the last seq num T(changes.results.length == 4); T(changes.results[3].id == "1"); - // we've removed deletions from the changes feed as they are on the doc record not the doc_info - T(!changes.results[3].deleted); + T(changes.results[3].deleted); // do an update var doc2 = db.open("3"); diff --git a/share/www/script/test/replication.js b/share/www/script/test/replication.js index c08d128b..210ffa2c 100644 --- a/share/www/script/test/replication.js +++ b/share/www/script/test/replication.js @@ -100,12 +100,12 @@ couchTests.replication = function(debug) { }; this.afterAB1 = function(dbA, dbB) { - var rows = dbB.changes({include_docs:true}).results; + var rows = dbB.changes().results; var rowCnt = 0; for (var i=0; i < rows.length; i++) { if (rows[i].id == "del1") { rowCnt += 1; - T(rows[i].doc._deleted == true); + T(rows[i].deleted == true); } }; T(rowCnt == 1); -- cgit v1.2.3