From 6be6c0c11d963a84b8180f0bba596c71470ecde9 Mon Sep 17 00:00:00 2001 From: gggeek Date: Sat, 18 May 2019 09:30:00 +0000 Subject: [PATCH] travis --- .travis.yml | 6 ++---- tests/4LocalhostMultiTest.php | 19 ------------------- 2 files changed, 2 insertions(+), 23 deletions(-) diff --git a/.travis.yml b/.travis.yml index af2f5cc..a3641a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 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(); - } } -- 2.43.0