ajax test: Removed test for extending with null.

This commit is contained in:
Scott González 2008-05-07 01:16:54 +00:00
parent 96ca83d150
commit 5311565223

View file

@ -298,18 +298,14 @@ 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);