diff options
-rw-r--r-- | _test/tests/inc/httpclient_http.test.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/_test/tests/inc/httpclient_http.test.php b/_test/tests/inc/httpclient_http.test.php index f3afdce66..99c9b035b 100644 --- a/_test/tests/inc/httpclient_http.test.php +++ b/_test/tests/inc/httpclient_http.test.php @@ -78,6 +78,9 @@ class httpclient_http_test extends DokuWikiTest { * @group internet */ function test_redirect(){ + $this->markTestSkipped('disabled while redirect bug in httpbin is being fixed'); + return; + $http = new HTTPMockClient(); $data = $http->get($this->server.'/redirect/3'); if($http->noconnection()) { @@ -95,6 +98,9 @@ class httpclient_http_test extends DokuWikiTest { * @group internet */ function test_relredirect(){ + $this->markTestSkipped('disabled while redirect bug in httpbin is being fixed'); + return; + $http = new HTTPMockClient(); $data = $http->get($this->server.'/relative-redirect/3'); if($http->noconnection()) { @@ -112,6 +118,9 @@ class httpclient_http_test extends DokuWikiTest { * @group internet */ function test_redirectfail(){ + $this->markTestSkipped('disabled while redirect bug in httpbin is being fixed'); + return; + $http = new HTTPMockClient(); $data = $http->get($this->server.'/redirect/5'); if($http->noconnection()) { |