From eb5aab99525ede9f8609fbfc741c6337cf2d5061 Mon Sep 17 00:00:00 2001 From: jaubourg Date: Tue, 1 Feb 2011 09:30:52 +0100 Subject: [PATCH] Places multiple signature test after all primary callbacks tests. --- test/unit/ajax.js | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/test/unit/ajax.js b/test/unit/ajax.js index ad14d0a..b51419d 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -38,21 +38,6 @@ 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 ); @@ -255,6 +240,21 @@ test("jQuery.ajax() - error 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() - textStatus and errorThrown values", function() { var nb = 2; -- 1.7.10.4