X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Ffactory.phpt;h=6a629768102506962d894628880f0862f436d554;hp=4267e3650308c63fa0e5623aa97ee5e6630f7a56;hb=c0d96fe2c0d156412bcb22bf5b9f5e9ed0046c9c;hpb=dc34435880de3900616a80a2466105790e7a118a diff --git a/tests/factory.phpt b/tests/factory.phpt index 4267e36..6a62976 100644 --- a/tests/factory.phpt +++ b/tests/factory.phpt @@ -28,8 +28,12 @@ $r = $f->createClient(); $p = $f->createPool(); $s = $f->createDataShare(); +$r->setRequest(new http\Client\Request("GET", "http://localhost/")); +$x = $f->createPool($r); +$y = $f->createDatashare($r); + var_dump( - array_map("get_class", array($f,$r,$p,$s)), + array_map("get_class", array($f,$r,$p,$s,$x,$y)), $f->getDriver() ); @@ -45,7 +49,7 @@ echo "Done\n"; ?> --EXPECTF-- Test -array(4) { +array(6) { [0]=> string(9) "MyFactory" [1]=> @@ -54,6 +58,10 @@ array(4) { string(6) "MyPool" [3]=> string(7) "MyShare" + [4]=> + string(6) "MyPool" + [5]=> + string(7) "MyShare" } string(4) "curl" clients are not supported by this driver