upgrade test suite to 5.3
[m6w6/ext-http] / tests / HttpMessage_003.phpt
index 7caf206ba89bc07c4f7e74865b87be0f7bf64b43..e2f9f4f24e8a622b74c8e94ed8b694b1d15b8e82 100644 (file)
@@ -1,9 +1,9 @@
 --TEST--
-HttpMessage implmenets Serializable, Countable
+HttpMessage implements Serializable, Countable
 --SKIPIF--
 <?php
 include 'skip.inc';
-checkmin(5);
+checkmin(5.3);
 ?>
 --FILE--
 <?php
@@ -31,7 +31,7 @@ var_dump($m->count());
 echo "Done\n";
 ?>
 --EXPECTF--
-%sTEST
+%aTEST
 int(3)
 string(148) "HTTP/1.1 301
 Location: /anywhere
@@ -44,25 +44,27 @@ Content-Length: 1
 X
 "
 object(HttpMessage)#%d (%d) {
-  ["type:protected"]=>
+  ["type":protected]=>
   int(2)
-  ["httpVersion:protected"]=>
-  float(1.1)
-  ["responseCode:protected"]=>
-  int(200)
-  ["responseStatus:protected"]=>
-  string(2) "Ok"
-  ["requestMethod:protected"]=>
+  ["body":protected]=>
+  string(0) ""
+  ["requestMethod":protected]=>
   string(0) ""
-  ["requestUri:protected"]=>
+  ["requestUrl":protected]=>
   string(0) ""
-  ["headers:protected"]=>
+  ["responseStatus":protected]=>
+  string(2) "Ok"
+  ["responseCode":protected]=>
+  int(200)
+  ["httpVersion":protected]=>
+  float(1.1)
+  ["headers":protected]=>
   array(1) {
     ["Server"]=>
     string(9) "Funky/1.0"
   }
-  ["body:protected"]=>
-  string(0) ""
+  ["parentMessage":protected]=>
+  NULL
 }
 int(1)
 Done