be more verbose about nghttp2 skip
[m6w6/ext-http] / tests / header009.phpt
1 --TEST--
2 header params w/ args
3 --SKIPIF--
4 <?php
5 include "skipif.inc";
6 ?>
7 --FILE--
8 <?php
9
10 echo "Test\n";
11
12 $header = new http\Header("Custom", '"foo" is "bar". "bar" is "bis" where "bis" is "where".');
13 var_dump(
14 array(
15 "foo" => array("value" => "bar", "arguments" => array()),
16 "bar" => array("value" => "bis", "arguments" => array("bis" => "where"))
17 ) === $header->getParams(".", "where", "is")->params
18 );
19
20 ?>
21 Done
22 --EXPECT--
23 Test
24 bool(true)
25 Done