Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
php
/
strings.t
blob: 6effcc99070a64d92ce484f2f1314af05a5a8ea4 [
file
]
use
strict
;
use
warnings FATAL
=>
'all'
;
use
Apache
::
Test
;
use
Apache
::
TestRequest
;
plan tests
=>
1
,
need_php
;
my
$expected
=
"\" \\'\\n\\'a\\\\b\\"
;
my
$result
=
GET_BODY
"/php/strings.php"
;
ok $result eq $expected
;