From 29411a4405c73b20244108db6bb868f3f11ccd73 Mon Sep 17 00:00:00 2001 From: Brandon Aaron Date: Sat, 16 May 2009 20:22:47 +0000 Subject: [PATCH] error case for an ajax test --- test/unit/ajax.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/unit/ajax.js b/test/unit/ajax.js index a049fec..5a95921 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -642,8 +642,12 @@ test("jQuery.ajax() - script, Remote with POST", function() { type: "POST", dataType: "script", success: function(data, status){ - ok( foobar, "Script results returned (GET, no callback)" ); - equals( status, "success", "Script results returned (GET, no callback)" ); + ok( foobar, "Script results returned (POST, no callback)" ); + equals( status, "success", "Script results returned (POST, no callback)" ); + start(); + }, + error: function(xhr) { + ok( false, "ajax error, status code: " + xhr.status ); start(); } }); -- 1.7.10.4