From eff7e5f18f78a52afd9107c15252876e0291b783 Mon Sep 17 00:00:00 2001 From: Adam Kocoloski Date: Wed, 29 Apr 2009 14:07:09 +0000 Subject: Closes COUCHDB-320 (ignore Content-Type in _temp_view). Thanks B. Candler git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@769792 13f79535-47bb-0310-9956-ffa450edef68 --- share/www/script/test/view_errors.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'share/www/script/test/view_errors.js') diff --git a/share/www/script/test/view_errors.js b/share/www/script/test/view_errors.js index b9a6aa63..12225e67 100644 --- a/share/www/script/test/view_errors.js +++ b/share/www/script/test/view_errors.js @@ -50,6 +50,15 @@ couchTests.view_errors = function(debug) { }); T(JSON.parse(xhr.responseText).error == "invalid_json"); + // views should ignore Content-Type, like the rest of CouchDB + var xhr = CouchDB.request("POST", "/test_suite_db/_temp_view", { + headers: {"Content-Type": "application/x-www-form-urlencoded"}, + body: JSON.stringify({language: "javascript", + map : "function(doc){}" + }) + }); + T(xhr.status == 200); + var map = function (doc) {emit(doc.integer, doc.integer);}; try { -- cgit v1.2.3