aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/ajax.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/ajax.js')
-rw-r--r--test/unit/ajax.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js
index a332c929c..0f6de4696 100644
--- a/test/unit/ajax.js
+++ b/test/unit/ajax.js
@@ -420,6 +420,22 @@ module( "ajax", {
};
});
+ ajaxTest( "#15118 - jQuery.ajax() - function without jQuery.event", 1, function() {
+ var holder;
+ return {
+ url: url( "data/json.php" ),
+ setup: function() {
+ holder = jQuery.event;
+ delete jQuery.event;
+ },
+ complete: function() {
+ ok( true, "Call can be made without jQuery.event" );
+ jQuery.event = holder;
+ },
+ success: true
+ };
+ });
+
ajaxTest( "jQuery.ajax() - context modification", 1, {
url: url("data/name.html"),
context: {},