summaryrefslogtreecommitdiff
path: root/share/www/script/test/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'share/www/script/test/config.js')
-rw-r--r--share/www/script/test/config.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/share/www/script/test/config.js b/share/www/script/test/config.js
index a156be37..debe499a 100644
--- a/share/www/script/test/config.js
+++ b/share/www/script/test/config.js
@@ -15,7 +15,7 @@ couchTests.config = function(debug) {
db.deleteDb();
db.createDb();
if (debug) debugger;
-
+
// test that /_config returns all the settings
var xhr = CouchDB.request("GET", "/_config");
var config = JSON.parse(xhr.responseText);
@@ -49,7 +49,7 @@ couchTests.config = function(debug) {
T(config.httpd_global_handlers._config);
T(config.log.level);
T(config.query_servers.javascript);
-
+
// test that settings can be altered
xhr = CouchDB.request("PUT", "/_config/test/foo",{
body : JSON.stringify("bar"),
@@ -62,5 +62,6 @@ couchTests.config = function(debug) {
// you can get a single key
xhr = CouchDB.request("GET", "/_config/test/foo");
- T(xhr.responseText == '"bar"');
+ config = JSON.parse(xhr.responseText);
+ T(config == "bar");
};