Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
php
/
eval.t
blob: 62fe0967065b90bfd8417f49a5bca48264cc0f30 [
file
]
use
strict
;
use
warnings FATAL
=>
'all'
;
use
Apache
::
Test
;
use
Apache
::
TestRequest
;
## testing eval function
plan tests
=>
1
,
need_php
;
my
$expected
=
"Hello"
;
my
$result
=
GET_BODY
"/php/eval.php"
;
ok $result eq $expected
;