blob: ce4e6318f4397dc42906640a6252fb52f6472753 (
plain)
1
2
3
4
5
6
7
8
9
10
|
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestRequest;
plan tests => 1, need_php;
my $result = GET_BODY "/php/globals.php";
ok $result eq "1 5 2 2 10 5 2 5 3 2 10 5 3 5 4 2 \n";
|