- Fixed build on php-trunk
[m6w6/ext-http] / tests / HttpRequest_001.phpt
index 8e0d6fab06c112793b1019cfa3fdc1695d6d4265..5ef2d9d7fb59da5782ac0bd395e9999ba9385339 100644 (file)
@@ -1,15 +1,16 @@
 --TEST--
 HttpRequest options
 --SKIPIF--
-<?php 
+<?php
 include 'skip.inc';
-(5 > (int) PHP_VERSION) and die('skip PHP5 is required for Http classes');
+checkmin("5.2.5");
+checkcls('HttpRequest');
 ?>
 --FILE--
 <?php
-$r1 = new HttpRequest;
+echo "-TEST\n";
+$r1 = new HttpRequest(null, 0, array('redirect'=>11, 'headers'=>array('X-Foo'=>'Bar')));
 $r2 = new HttpRequest;
-$r1->setOptions(array('redirect'=>11, 'headers'=>array('X-Foo'=>'Bar')));
 $r2->setOptions(array('redirect'=>99, 'headers'=>array('X-Bar'=>'Foo')));
 $o1 = $r1->getOptions();
 $o2 = $r2->getOptions();
@@ -21,32 +22,30 @@ $r1 = null;
 $r2 = null;
 ?>
 --EXPECTF--
-Content-type: text/html
-X-Powered-By: PHP/%s
-
+%aTEST
 Array
 (
     [0] => Array
         (
-            [redirect] => 11
             [headers] => Array
                 (
                     [X-Foo] => Bar
                     [X-Bar] => Foo
                 )
 
+            [redirect] => 11
         )
 
     [1] => Array
         (
-            [redirect] => 99
             [headers] => Array
                 (
                     [X-Bar] => Foo
                     [X-Foo] => Bar
                 )
 
+            [redirect] => 99
         )
 
 )
-bool(false)
\ No newline at end of file
+bool(false)