travis
authorgggeek <giunta.gaetano@gmail.com>
Sat, 18 May 2019 09:30:00 +0000 (09:30 +0000)
committergggeek <giunta.gaetano@gmail.com>
Sat, 18 May 2019 09:30:00 +0000 (09:30 +0000)
.travis.yml
tests/4LocalhostMultiTest.php

index af2f5cc..a3641a4 100644 (file)
@@ -1,7 +1,6 @@
 language: php
 
-# the current Travis VMs are based on Ubuntu Trusty. Alas, those do not have php 5.3 available. So we keep using Precise...
-dist: precise
+dist: xenial
 
 php:
   - 5.3
@@ -11,8 +10,7 @@ php:
   - 7.0
   - 7.1
   - 7.2
-  # hhvm is not available any more on Precise images
-  #- hhvm
+  - 7.3
 
 before_install:
   # This is mandatory or the 'apt-get install' calls following will fail
index 32fef36..0516c30 100644 (file)
@@ -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();
-    }
 }