back to dev
[m6w6/ext-http] / tests / client001.phpt
1 --TEST--
2 client drivers
3 --SKIPIF--
4 <?php
5 include "skipif.inc";
6 skip_client_test();
7 ?>
8 --FILE--
9 <?php
10 echo "Test\n";
11
12 foreach (http\Client::getAvailableDrivers() as $driver) {
13 $client = new http\Client($driver);
14 var_dump($client instanceof http\Client);
15 }
16
17 ?>
18 Done
19 --EXPECTREGEX--
20 Test
21 (?:bool\(true\)
22 )+Done