aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/ajax.js
diff options
context:
space:
mode:
authorGeorge Mauer <gmauer@gmail.com>2015-01-05 21:00:12 -0600
committerDave Methvin <dave.methvin@gmail.com>2015-01-11 20:32:38 -0500
commit89ce0af2cf7f001647e74fc1de92ce94a51fd5c2 (patch)
tree251c899a3fe79bea5d0288c5f151eeffdd4eea26 /test/unit/ajax.js
parentbb928bde7e7b85357fef3fedd450b04c03e965d7 (diff)
downloadjquery-89ce0af2cf7f001647e74fc1de92ce94a51fd5c2.tar.gz
jquery-89ce0af2cf7f001647e74fc1de92ce94a51fd5c2.zip
Ajax: $.post and $.get can now take an options object
Fixes gh-1986 Closes gh-1995
Diffstat (limited to 'test/unit/ajax.js')
-rw-r--r--test/unit/ajax.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js
index b41654db9..29a4dfb46 100644
--- a/test/unit/ajax.js
+++ b/test/unit/ajax.js
@@ -2034,6 +2034,26 @@ module( "ajax", {
});
});
+ asyncTest( "jQuery[get|post]( options ) - simple with xml", 2, function() {
+ jQuery.when.apply( jQuery,
+ jQuery.map( [ "get", "post" ] , function( method ) {
+ return jQuery[ method ]({
+ url: url( "data/name.php" ),
+ data: {
+ "xml": "5-2"
+ },
+ success: function( xml ) {
+ jQuery( "math", xml ).each(function() {
+ strictEqual( jQuery( "result", this ).text(), "3", "Check for XML" );
+ });
+ }
+ });
+ })
+ ).always(function() {
+ start();
+ });
+ });
+
//----------- jQuery.active
test( "jQuery.active", 1, function() {