14 lines
256 B
Perl
14 lines
256 B
Perl
use strict;
|
|
use warnings FATAL => 'all';
|
|
|
|
use Apache::Test;
|
|
use Apache::TestRequest;
|
|
|
|
## testing stack after early function return
|
|
|
|
plan tests => 1, need_php4;
|
|
|
|
my $expected = "HelloHello";
|
|
|
|
my $result = GET_BODY "/php/stack.php";
|
|
ok $result eq $expected;
|