2d1d8b27dcc125795a7059b978e6a4eb9e8777d1
[m6w6/ext-http] / tests / messagebody005.phpt
1 --TEST--
2 message body add part
3 --SKIPIF--
4 <?php
5 include "skipif.inc";
6 ?>
7 --FILE--
8 <?php
9 echo "Test\n";
10
11 $temp = new http\Message\Body;
12 $temp->addPart(new http\Message("This: is a header\n\nand this is the data\n"));
13 echo $temp;
14
15 ?>
16 DONE
17 --EXPECTF--
18 Test
19 --%x.%x
20 This: is a header
21 Content-Length: 21
22
23 and this is the data
24
25 --%x.%x--
26 DONE