From 47895d920228edfb195e62ff04d5aa8ef667ed5b Mon Sep 17 00:00:00 2001 From: Noah Slater Date: Tue, 24 Feb 2009 18:10:19 +0000 Subject: added newline to JSON responses, closes COUCHDB-107 git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@747465 13f79535-47bb-0310-9956-ffa450edef68 --- share/www/script/test/content_negotiation.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'share/www/script/test/content_negotiation.js') diff --git a/share/www/script/test/content_negotiation.js b/share/www/script/test/content_negotiation.js index 757105ff..9df79bcd 100644 --- a/share/www/script/test/content_negotiation.js +++ b/share/www/script/test/content_negotiation.js @@ -20,6 +20,10 @@ couchTests.content_negotiation = function(debug) { xhr = CouchDB.request("GET", "/test_suite_db/"); T(xhr.getResponseHeader("Content-Type") == "text/plain;charset=utf-8"); + // make sure JSON responses end in a newline + var text = xhr.responseText; + T(text[text.length-1] == "\n"); + xhr = CouchDB.request("GET", "/test_suite_db/", { headers: {"Accept": "text/html;text/plain;*/*"} }); -- cgit v1.2.3