diff options
author | Jan Lehnardt <jan@apache.org> | 2009-03-20 10:26:13 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2009-03-20 10:26:13 +0000 |
commit | c87b89dea947ac11ce46f9f7d6dcf873caa990d4 (patch) | |
tree | a62bd856ef16b1f63f36b2637ff8e490188ddb74 /share/www | |
parent | f73b12a67d852b2ff710acf4510eff5abc472b10 (diff) |
remove leftovers of MOVE form the stats tests
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@756404 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www')
-rw-r--r-- | share/www/script/test/stats.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/share/www/script/test/stats.js b/share/www/script/test/stats.js index 9fb643b2..6d56a81b 100644 --- a/share/www/script/test/stats.js +++ b/share/www/script/test/stats.js @@ -264,22 +264,6 @@ couchTests.stats = function(debug) { TEquals(copies + 1, new_copies, name); }, - 'should increment database changes counter for document moves': function(name) { - var db = new CouchDB("test_suite_db"); - db.deleteDb(); - db.createDb(); - - var doc = {"_id":"test"}; - db.save(doc); - - var moves = requestStatsTest("couchdb", "database_writes").current; - CouchDB.request("MOVE", "/test_suite_db/test?rev=" + doc._rev, { - headers: {"Destination":"move_of_test"} - }); - var new_moves = requestStatsTest("couchdb", "database_writes").current; - - TEquals(moves + 1, new_moves, name); - }, 'should increase the bulk doc counter': function(name) { var db = new CouchDB("test_suite_db"); db.deleteDb(); |