blob: 92bec94190d6676a1cb57c5917c2a4fc6ded91e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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;
|