From 08fcde6a59e5bb6ca9e58bf78aac64ff2c15c29d Mon Sep 17 00:00:00 2001 From: Anton M Date: Sat, 5 Feb 2011 00:20:23 +0100 Subject: [PATCH] Remove an invalid ajax test and some code that is no longer used by any test. --- test/data/name.php | 7 +------ test/data/notmodified.php | 1 - test/unit/ajax.js | 15 --------------- 3 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 test/data/notmodified.php diff --git a/test/data/name.php b/test/data/name.php index ee22e45..6402858 100644 --- a/test/data/name.php +++ b/test/data/name.php @@ -19,11 +19,6 @@ if($name == 'foo') { echo "pan"; die(); } -$request = apache_request_headers(); -$request = $request['X-Custom-Header']; -if(strlen($request) > 0) { - echo $request; - die(); -} + echo 'ERROR '; ?> \ No newline at end of file diff --git a/test/data/notmodified.php b/test/data/notmodified.php deleted file mode 100644 index 0309a6b..0000000 --- a/test/data/notmodified.php +++ /dev/null @@ -1 +0,0 @@ - diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 57e6512..c2d5729 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -524,21 +524,6 @@ test("jQuery ajax - cross-domain detection", function() { }); -test(".ajax() - 304", function() { - expect( 1 ); - stop(); - - jQuery.ajax({ - url: url("data/notmodified.php"), - success: function(){ ok(true, "304 ok"); }, - // Do this because opera simply refuses to implement 304 handling :( - // A feature-driven way of detecting this would be appreciated - // See: http://gist.github.com/599419 - error: function(){ ok(jQuery.browser.opera, "304 not ok "); }, - complete: function(xhr){ start(); } - }); -}); - test(".load()) - 404 error callbacks", function() { expect( 6 ); stop(); -- 1.7.10.4