Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
php
/
func2.t
blob: 2dedb59dc9bcf071b9a89c0fe01c3187066c5619 [
file
]
use
strict
;
use
warnings FATAL
=>
'all'
;
use
Apache
::
Test
;
use
Apache
::
TestRequest
;
plan tests
=>
1
,
need_php4
;
my
$expected
=
<<
EXPECT
;
hey
=
0
,
0
hey
=
1
,
-
1
hey
=
2
,
-
2
EXPECT
my
$result
=
GET_BODY
"/php/func2.php"
;
ok $result eq $expected
;