X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2F4LocalhostMultiTest.php;h=0516c3044c74fe18691d263ed91f55da635054f3;hb=6be6c0c11d963a84b8180f0bba596c71470ecde9;hp=32fef36a8ee7d46a9c1d5f7d711516cd762a83de;hpb=081f4954f3b60966d9e44070b52962105f4f12a4;p=plcapi.git diff --git a/tests/4LocalhostMultiTest.php b/tests/4LocalhostMultiTest.php index 32fef36..0516c30 100644 --- a/tests/4LocalhostMultiTest.php +++ b/tests/4LocalhostMultiTest.php @@ -377,23 +377,4 @@ class LocalhostMultiTest extends LocalhostTest $this->$method(); } - - function testBasicAuth() - { - $this->client->setCredentials('test', 'test'); - $this->client->path = $this->args['URI'].'?FORCE_AUTH=Basic'; - $this->_runtests(); - } - - function testDigestAuth() - { - if(!function_exists('curl_init')) - { - $this->markTestSkipped('CURL missing: cannot test digest auth functionality'); - return; - } - $this->client->setCredentials('test', 'test', CURLAUTH_DIGEST); - $this->client->path = $this->args['URI'].'?FORCE_AUTH=Digest'; - $this->_runtests(); - } }