projects
/
m6w6
/
ext-http
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
|
github
history
|
raw
|
HEAD
- changelog
[m6w6/ext-http]
/
tests
/
HttpRequestPool_004.phpt
1
--TEST--
2
HttpRequestPool::__destruct() invalid curl handle
3
--SKIPIF--
4
<?php
5
include 'skip.inc';
6
checkmin(5);
7
checkcls('HttpRequest');
8
checkcls('HttpRequestPool');
9
?>
10
--FILE--
11
<?php
12
echo "-TEST\n";
13
$p = new HttpRequestPool(new HttpRequest('http://example.com'));
14
$p = null;
15
echo "Done\n";
16
?>
17
--EXPECTF--
18
%sTEST
19
Done