summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorDamien F. Katz <damien@apache.org>2008-07-29 16:47:48 +0000
committerDamien F. Katz <damien@apache.org>2008-07-29 16:47:48 +0000
commit69228815a04443a7a9063a75608117c674a9a822 (patch)
treec57d905523d24a1385bf2a6bfe6ba63b1dbf9b48 /share
parentb0a8ce34c118b1e0ef3e1e080cb70d3c9b91902f (diff)
Removed some debugging stuff I left in the tests. oops.
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@680765 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share')
-rw-r--r--share/www/script/couch_tests.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js
index 8b0cb398..28afeaa9 100644
--- a/share/www/script/couch_tests.js
+++ b/share/www/script/couch_tests.js
@@ -290,10 +290,6 @@ var tests = {
result = db.query(map, reduce, {startkey: 4, endkey: 6});
T(result.rows[0].value == 15);
- result = db.query(map, reduce, {count: 3});
- console.log(result.rows[0].value);
- T(result.rows[0].value == 6);
-
for(var i=1; i<numDocs/2; i+=30) {
result = db.query(map, reduce, {startkey: i, endkey: numDocs - i});
T(result.rows[0].value == summate(numDocs-i) - summate(i-1));
@@ -418,14 +414,6 @@ var tests = {
// account for floating point rounding error
T(Math.abs(difference) < 0.0000000001);
- var rows = db.query(map).rows;
- console.log(JSON.stringify(rows))
- for(var i=0; i < 10; i++) {
- for(var j=0; j < 10; j++) {
- T(rows[(i*10) + j].value == (i+1)*10);
- }
- }
-
},
multiple_rows: function(debug) {