ajax test: Removed test for extending with null.
authorScott González <scott.gonzalez@gmail.com>
Wed, 7 May 2008 01:16:54 +0000 (01:16 +0000)
committerScott González <scott.gonzalez@gmail.com>
Wed, 7 May 2008 01:16:54 +0000 (01:16 +0000)
test/unit/ajax.js

index a5891c5..fc2ab9e 100644 (file)
@@ -298,19 +298,15 @@ test("ajax cache", function () {
 });
 
 test("global ajaxSettings", function() {
-       expect(3);
+       expect(2);
 
        var tmp = jQuery.extend({}, jQuery.ajaxSettings);
-    var orig = { url: "data/with_fries.xml", data: null };
+    var orig = { url: "data/with_fries.xml" };
        var t;
 
        $.ajaxSetup({ data: {foo: 'bar', bar: 'BAR'} });
 
     t = jQuery.extend({}, orig);
-    $.ajax(t);
-       ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending null" );
-
-    t = jQuery.extend({}, orig);
        t.data = {};
     $.ajax(t);
        ok( t.url.indexOf('foo') > -1 && t.url.indexOf('bar') > -1, "Check extending {}" );