blob: 6422a97c6dba867ec8a2a8b8851ae5cf61e60572 (
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;
## nested functions test.
plan tests => 1, need_php;
my $expected = "4 Hello 4";
my $result = GET_BODY "/php/func6.php";
ok $result eq $expected;
|