diff options
Diffstat (limited to 'share')
-rw-r--r-- | share/www/script/test/view_errors.js | 9 |
1 files changed, 9 insertions, 0 deletions
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 { |