aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/ujs/public/test/call-remote.js
diff options
context:
space:
mode:
Diffstat (limited to 'actionview/test/ujs/public/test/call-remote.js')
-rw-r--r--actionview/test/ujs/public/test/call-remote.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/actionview/test/ujs/public/test/call-remote.js b/actionview/test/ujs/public/test/call-remote.js
index 778dc1b09a..c8813bb82a 100644
--- a/actionview/test/ujs/public/test/call-remote.js
+++ b/actionview/test/ujs/public/test/call-remote.js
@@ -128,17 +128,6 @@ asyncTest('execution of JS code does not modify current DOM', 1, function() {
})
})
-asyncTest('HTML content should be plain-text', 1, function() {
- buildForm({ method: 'post', 'data-type': 'html' })
-
- $('form').append('<input type="text" name="content_type" value="text/html">')
- $('form').append('<input type="text" name="content" value="<p>hello</p>">')
-
- submit(function(e, data, status, xhr) {
- ok(data === '<p>hello</p>', 'returned data should be a plain-text string')
- })
-})
-
asyncTest('XML document should be parsed', 1, function() {
buildForm({ method: 'post', 'data-type': 'html' })