Backport v4 updates
[m6w6/ext-http] / tests / client024.phpt
1 --TEST--
2 client deprecated methods
3 --SKIPIF--
4 <?php
5 include "skipif.inc";
6 skip_client_test();
7 if (!(error_reporting() & E_DEPRECATED))
8 die("skip error_reporting() & ~E_DEPRECATED\n");
9 ?>
10 --FILE--
11 <?php
12
13 echo "Test\n";
14
15 $client = new http\Client;
16 $client->enableEvents(false);
17 $client->enablePipelining(false);
18
19 ?>
20 ===DONE===
21 --EXPECTF--
22 Test
23
24 Deprecated: %s http\Client::enableEvents() is deprecated in %sclient024.php on line %d
25
26 Deprecated: %s http\Client::enablePipelining() is deprecated in %sclient024.php on line %d
27 ===DONE===