Improve $.ajax method signature unit test and placement
[jquery.git] / test / unit / ajax.js
index a536b9f..ad14d0a 100644 (file)
@@ -38,6 +38,21 @@ test("jQuery.ajax() - success callbacks", function() {
        });
 });
 
+test( "jQuery.ajax - multiple method signatures introduced in 1.5 ( #8107)", function() {
+       
+       expect( 4 );
+       
+       stop();
+       
+       jQuery.when(
+               jQuery.ajax().success(function() { ok( true, 'With no arguments' ); }),
+               jQuery.ajax('data/name.html').success(function() { ok( true, 'With only string URL argument' ); }),
+               jQuery.ajax('data/name.html', {} ).success(function() { ok( true, 'With string URL param and map' ); }),
+               jQuery.ajax({ url: 'data/name.html'} ).success(function() { ok( true, 'With only map' ); })                     
+       ).then( start, start );
+       
+});
+
 test("jQuery.ajax() - success callbacks - (url, options) syntax", function() {
        expect( 8 );