Merge branch 'master' into stable
[dokuwiki.git] / _test / tests / inc / httpclient_https_proxy.test.php
blobaca3b3be28bbd8de6c20cce8de3eb67bdce0fa5c
1 <?php
2 require_once dirname(__FILE__).'/httpclient_http_proxy.test.php';
4 class httpclient_https_proxy_test extends httpclient_http_proxy_test {
5 protected $url = 'https://www.dokuwiki.org/README';
7 public function setUp(){
8 // skip tests when this PHP has no SSL support
9 $transports = stream_get_transports();
10 if(!in_array('ssl',$transports)){
11 $this->markTestSkipped('No SSL support available.');
13 parent::setUp();